summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/XLevelWinCondition.cs
blob: 9fb7486bdc709ed463faa50fea42c33cfb5508fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace XMainClient
{
	internal enum XLevelWinCondition
	{
		LevelWin_None,
		LevelWin_Boss,
		LevelWin_Killall,
		LevelWin_Kill_N,
		LevelWin_Time,
		LevelWin_PVP,
		LevelWin_BossRush
	}
}