17 lines
258 B
C#
17 lines
258 B
C#
namespace Plane.Copters
|
|
{
|
|
public enum CopterState
|
|
{
|
|
Locked,
|
|
Initialized,
|
|
TakingOff,
|
|
FloatMode,
|
|
HoverMode,
|
|
CommandMode,
|
|
Circling,
|
|
Following,
|
|
Returning,
|
|
Landing
|
|
}
|
|
}
|