summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Input/CommandType.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2020-10-13 17:20:14 +0800
committerchai <chaifix@163.com>2020-10-13 17:20:14 +0800
commit71c03c717b189ee0ff0e62d219f02b8ab336c40a (patch)
tree395ce6c55f1876ca6451c706e38a95d0bcbf70a6 /Assets/Scripts/Input/CommandType.cs
parentfc6de82e75310b4c007d80753a5f58e6692f4855 (diff)
+ability system
Diffstat (limited to 'Assets/Scripts/Input/CommandType.cs')
-rw-r--r--Assets/Scripts/Input/CommandType.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Assets/Scripts/Input/CommandType.cs b/Assets/Scripts/Input/CommandType.cs
new file mode 100644
index 00000000..3c537383
--- /dev/null
+++ b/Assets/Scripts/Input/CommandType.cs
@@ -0,0 +1,21 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+
+public enum Command
+{
+ // 方向键
+ Left,
+ Right,
+ Top,
+ Bottom,
+
+ // 操作键
+ Triangle, // △
+ Cross, // ×
+ Square, // □
+ Circle, // ○
+}
+
+