This commit is contained in:
2024-07-06 20:45:34 +08:00
parent f74d219e5c
commit 68665845ab
3 changed files with 172 additions and 0 deletions

18
KeyboardInput/README.md Normal file
View File

@@ -0,0 +1,18 @@
### 键盘映射表类
```csharp
public class KeyMapping
{
public string actionName;
public KeyCode keyCode;
public KeyMapping(string actionName, KeyCode keyCode)
{
this.actionName = actionName;
this.keyCode = keyCode;
}
}
```
<code>KeySettingManager</code>为单例类
//todo