更新了网络服务接口定义

This commit is contained in:
CortexCore
2023-06-07 02:02:14 +08:00
parent 08b05f8a74
commit b2444fd909
2727 changed files with 20455 additions and 4448 deletions

View File

@@ -17,6 +17,11 @@ namespace BITKit
List<InputAction> actions = new();
public InputActionGroup RegisterCallback(InputActionReference reference, Action<InputAction.CallbackContext> callback)
{
if (reference is null)
{
Debug.LogWarning($"未知的引用");
return this;
}
EnsureConfiguration();
var action = reference.action.Clone();