Add initial game code

This commit is contained in:
Aslan 2025-09-12 08:34:06 -04:00
parent f80a60e208
commit 1383997ebf
55 changed files with 1355 additions and 0 deletions

21
scripts/Order.cs Normal file
View 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; }
}