diff options
author | chai <chaifix@163.com> | 2021-07-30 17:04:19 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-07-30 17:04:19 +0800 |
commit | f5a6620ca6ea46174884987609b92bbd8522fa89 (patch) | |
tree | b4fb1ec0b143ad331bb29e7440435688e76ec0d3 /Assets/Scripts/Input | |
parent | ab482ab3df64d97c3df9921f6d645d914368bf08 (diff) |
*misc
Diffstat (limited to 'Assets/Scripts/Input')
-rw-r--r-- | Assets/Scripts/Input/InputManager.cs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Assets/Scripts/Input/InputManager.cs b/Assets/Scripts/Input/InputManager.cs index 82780cea..ec74b0cf 100644 --- a/Assets/Scripts/Input/InputManager.cs +++ b/Assets/Scripts/Input/InputManager.cs @@ -2,16 +2,14 @@ using System.Collections.Generic;
using UnityEngine;
-// 处理输入逻辑
+// 处理输入逻辑,不涉及读取输入,只处理逻辑
public class InputManager : SingletonMB<InputManager>
{
- public void OnMove(Vector3 dir)
- {
- }
- public void OnSkill()
+ public void InputMove()
{
}
+
}
|