summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/LevelCmd.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-01-25 14:28:30 +0800
committerchai <chaifix@163.com>2021-01-25 14:28:30 +0800
commit6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch)
tree7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XMainClient/LevelCmd.cs
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XMainClient/LevelCmd.cs')
-rw-r--r--Client/Assets/Scripts/XMainClient/LevelCmd.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XMainClient/LevelCmd.cs b/Client/Assets/Scripts/XMainClient/LevelCmd.cs
new file mode 100644
index 00000000..3bad7ba2
--- /dev/null
+++ b/Client/Assets/Scripts/XMainClient/LevelCmd.cs
@@ -0,0 +1,39 @@
+using System;
+
+namespace XMainClient
+{
+ internal enum LevelCmd
+ {
+ Level_Cmd_Invalid,
+ Level_Cmd_TalkL,
+ Level_Cmd_TalkR,
+ Level_Cmd_Notalk,
+ Level_Cmd_Addbuff,
+ Level_Cmd_Tutorial,
+ Level_Cmd_Notice,
+ Level_Cmd_StopNotice,
+ Level_Cmd_Opendoor,
+ Level_Cmd_Cutscene,
+ Level_Cmd_LevelupFx,
+ Level_Cmd_ShowSkill,
+ Level_Cmd_KillSpawn,
+ Level_Cmd_KillAlly,
+ Level_Cmd_KillWave,
+ Level_Cmd_Direction,
+ Level_Cmd_Outline,
+ Level_Cmd_Record,
+ Level_Cmd_Continue,
+ Level_Cmd_NewbieHelper,
+ Level_Cmd_NewbieNotice,
+ Level_Cmd_Removebuff,
+ Level_Cmd_Summon,
+ Level_Cmd_KillAllSpawn,
+ Level_Cmd_NpcPopSpeek,
+ Level_Cmd_SendAICmd,
+ Level_Cmd_Bubble,
+ Level_Cmd_HideBillboard,
+ Level_Cmd_ChangeBody,
+ Level_Cmd_JustFx,
+ Level_Cmd_PlayFx
+ }
+}