pacman/Pacman_refactored/Enums/GameState.cs
2022-07-06 18:45:56 +03:00

16 lines
244 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Pacman_refactored.Enums
{
public enum GameState
{
Game,
Menu,
GameOver,
NextLevel,
HowToPlay,
Exit
}
}