first commit

This commit is contained in:
boybook
2025-03-17 13:24:39 +08:00
commit 9a0334ee84
6410 changed files with 221907 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# InputMode
class in mod.common.minecraftEnum
- 描述
控制器输入模式
```python
class InputMode(object):
Undefined = -1 # 未识别类型
Mouse = 0 # 键鼠
Touch = 1 # 触摸屏
GamePad = 2 # 游戏手柄
```