Files
AppleHillsProduction/Assets/Scripts/Minigames/Airplane/Data/AirplaneGameState.cs
2025-12-07 20:34:12 +01:00

18 lines
553 B
C#

namespace Minigames.Airplane.Data
{
/// <summary>
/// Game states for the airplane minigame
/// </summary>
public enum AirplaneGameState
{
AirplaneSelection, // Player selecting airplane type
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
}
}