dashboard
repositories
filestore
activity
search
login
main
/
GemBattle
宝石塔防
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
鼠标抬起BUG
wangguan
2020-11-11
6b213bdbe7dec2304b256ddfacaa76d817cc47ee
[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
}
}