17 lines
492 B
C#
17 lines
492 B
C#
|
|
namespace Minigames.Airplane.Data
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Game states for the airplane minigame
|
||
|
|
/// </summary>
|
||
|
|
public enum AirplaneGameState
|
||
|
|
{
|
||
|
|
Intro, // Intro sequence
|
||
|
|
NextPerson, // Introducing the next person
|
||
|
|
Aiming, // Player is aiming the airplane
|
||
|
|
Flying, // Airplane is in flight
|
||
|
|
Evaluating, // Evaluating the result of the flight
|
||
|
|
GameOver // All people have had their turn
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|