16 lines
244 B
C#
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
|
|
}
|
|
}
|