2025-12-04 15:10:20 +01:00
|
|
|
namespace Minigames.Airplane.Data
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Game states for the airplane minigame
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum AirplaneGameState
|
|
|
|
|
{
|
2025-12-07 20:34:12 +01:00
|
|
|
AirplaneSelection, // Player selecting airplane type
|
2025-12-04 15:10:20 +01:00
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|