Files
2026-03-16 14:38:46 +02:00

10 lines
116 B
C#

namespace FlappyBird.Core
{
public enum GameState
{
Menu,
Playing,
GameOver
}
}