pacman/Pacman_refactored/Classes/Enums.cs
2022-07-06 12:47:50 +03:00

33 lines
451 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Pacman_refactored.Classes
{
public enum Direction
{
Up,
Down,
Left,
Right,
None
}
public enum GameState
{
Game,
Menu,
GameOver,
NextLevel,
HowToPlay,
Exit
}
public enum GhostType
{
Blinky,
Pinky,
Inky,
Clyde
}
}