chenxin
2020-11-17 344267a8edb7bc6eaa67a0493292f438d31ca20e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace TowerDefense.Level
{
    /// <summary>
    /// An enum to represent the different level states
    /// </summary>
    public enum LevelState
    {
        Intro,
        Building,
        SpawningEnemies,
        AllEnemiesSpawned,
        Lose,
        Win
    }
}