summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Input/CommandType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/Input/CommandType.cs')
-rw-r--r--Assets/Scripts/Input/CommandType.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/Assets/Scripts/Input/CommandType.cs b/Assets/Scripts/Input/CommandType.cs
deleted file mode 100644
index 3c537383..00000000
--- a/Assets/Scripts/Input/CommandType.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System.Collections;
-using System.Collections.Generic;
-using UnityEngine;
-
-
-public enum Command
-{
- // 方向键
- Left,
- Right,
- Top,
- Bottom,
-
- // 操作键
- Triangle, // △
- Cross, // ×
- Square, // □
- Circle, // ○
-}
-
-