e9b1ae44c5
* Copy UnityMcpBridge into a new MCPForUnity folder This is to close #284 * refactor: rename UnityMcpBridge directory to MCPForUnity in docs * chore: rename UnityMcpBridge directory to MCPForUnity across workflow files * chore: rename UnityMcpBridge directory to MCPForUnity across all files * refactor: update import paths from UnityMcpBridge to MCPForUnity across test files * fix: update module import paths to use MCPForUnity instead of UnityMcpBridge * chore: update unity-mcp package path to MCPForUnity directory * feat: add OneTimeSetUp to initialize CommandRegistry before tests run Hopefully fix the CI failures * Apply recent fix to new folder * Temporarily trigger tests to see if CI works * Revert "Temporarily trigger tests to see if CI works" It works! This reverts commit 8c6eaaad07545cef047769f2c52fe506545a8161.
22 lines
465 B
C#
22 lines
465 B
C#
using Newtonsoft.Json.Linq;
|
|
|
|
namespace MCPForUnity.Editor.Models
|
|
{
|
|
/// <summary>
|
|
/// Represents a command received from the MCP client
|
|
/// </summary>
|
|
public class Command
|
|
{
|
|
/// <summary>
|
|
/// The type of command to execute
|
|
/// </summary>
|
|
public string type { get; set; }
|
|
|
|
/// <summary>
|
|
/// The parameters for the command
|
|
/// </summary>
|
|
public JObject @params { get; set; }
|
|
}
|
|
}
|
|
|