Files
AppleHillsProduction/Assets/Scripts/Minigames/Airplane/Data/AirplaneGameState.cs

17 lines
492 B
C#
Raw Normal View History

2025-12-04 15:10:20 +01:00
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
}
}