dashboard
repositories
filestore
activity
search
login
魏旭东
/
GemBattle
forked from
GemBattle
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
无尽模式改为只攻击自己对应的兵线
chenxin
2020-10-27
8d10b61b215a3fad7eb53a7e7ee4dc9e9987d262
[~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
}
}