dashboard
repositories
filestore
activity
search
login
魏旭东
/
GemBattle
forked from
GemBattle
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
Init Project
chenxin
2020-10-19
69d78dba3b74f57708d0a5c04d3f0d8606f3ae9f
[~wxd/GemBattle.git]
/
Assets
/
Scripts
/
TowerDefense
/
Level
/
LevelState.cs
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
}
}