10 lines
116 B
C#
10 lines
116 B
C#
namespace FlappyBird.Core
|
|
{
|
|
public enum GameState
|
|
{
|
|
Menu,
|
|
Playing,
|
|
GameOver
|
|
}
|
|
}
|