Files
AppleHillsProduction/Assets/Scripts/Minigames/Airplane/Data/AirplaneGameState.cs
tschesky c27f22ef0a MVP of the plane throwing game (#77)
Co-authored-by: Michal Pikulski <michal@foolhardyhorizons.com>
Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Reviewed-on: #77
2025-12-07 19:36:57 +00: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
}
}