mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 19:03:29 +08:00
- 新增 IGameInputEvent 接口定义游戏输入事件 - 新增 IInputContext 接口用于处理输入事件的上下文 - 新增 InputContextStack 类管理输入上下文堆栈 - 新增 InputSystem 类负责整体输入事件分发与处理 - 移除旧版 Godot 输入系统相关实现代码 - 定义输入事件处理流程:上下文堆栈 -> 事件发送机制
7 lines
126 B
C#
7 lines
126 B
C#
namespace GFramework.Game.input;
|
|
|
|
/// <summary>
|
|
/// 游戏输入事件接口
|
|
/// </summary>
|
|
public interface IGameInputEvent;
|