加入用户最近100场战绩记录并实现展示
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using MCPForUnity.Editor.Helpers;
|
||||
using Newtonsoft.Json.Linq;
|
||||
|
||||
namespace MCPForUnity.Editor.Tools
|
||||
{
|
||||
[McpForUnityTool("get_tool_states")]
|
||||
public static class GetToolStates
|
||||
{
|
||||
public static object HandleCommand(JObject @params)
|
||||
{
|
||||
var empty = Array.Empty<object>();
|
||||
return new SuccessResponse(
|
||||
"Tool states are not tracked on the Unity side.",
|
||||
new
|
||||
{
|
||||
toolStates = empty,
|
||||
states = empty
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2b1d95ff0b9b68840b934b5f7c1b0aca
|
||||
Reference in New Issue
Block a user