blob: ec74b0cf4f66bf1901b7aabbf38b7dbe1ab52a49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// 处理输入逻辑,不涉及读取输入,只处理逻辑
public class InputManager : SingletonMB<InputManager>
{
public void InputMove()
{
}
}
|