mirror of
https://github.com/azaion/flights.git
synced 2026-04-22 10:56:32 +00:00
Initial commit
Made-with: Cursor
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace Azaion.Flights.Enums;
|
||||
|
||||
public enum AircraftType
|
||||
{
|
||||
Plane = 0,
|
||||
Copter = 1
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Azaion.Flights.Enums;
|
||||
|
||||
public enum FuelType
|
||||
{
|
||||
Electric = 0,
|
||||
Gasoline = 1,
|
||||
Diesel = 2
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Azaion.Flights.Enums;
|
||||
|
||||
public enum ObjectStatus
|
||||
{
|
||||
New = 0,
|
||||
Moved = 1,
|
||||
Removed = 2
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Azaion.Flights.Enums;
|
||||
|
||||
public enum WaypointObjective
|
||||
{
|
||||
Surveillance = 0,
|
||||
Strike = 1,
|
||||
Recon = 2
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace Azaion.Flights.Enums;
|
||||
|
||||
public enum WaypointSource
|
||||
{
|
||||
Auto = 0,
|
||||
Manual = 1
|
||||
}
|
||||
Reference in New Issue
Block a user