Add initial game code
This commit is contained in:
parent
f80a60e208
commit
1383997ebf
55 changed files with 1355 additions and 0 deletions
21
scripts/Order.cs
Normal file
21
scripts/Order.cs
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
public abstract class Order
|
||||
{
|
||||
public enum OrderCategory
|
||||
{
|
||||
TICK,
|
||||
DESTINATION,
|
||||
}
|
||||
public enum OrderType
|
||||
{
|
||||
IDLE,
|
||||
MOVE_THRUSTERS, MOVE_WARP,
|
||||
ENTER_GALAXY, EXIT_GALAXY,
|
||||
ENTER_NEBULA, EXIT_NEBULA,
|
||||
ENTER_SYSTEM, EXIT_SYSTEM,
|
||||
ORBIT, LEAVE_ORBIT,
|
||||
LAND, TAKE_OFF,
|
||||
}
|
||||
|
||||
public OrderCategory Category { get; protected set; }
|
||||
public OrderType Type { get; protected set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue