mirror of
https://github.com/tiennm99/godot.git
synced 2026-06-30 21:05:33 +00:00
0b94203a79
This will be used for communicating between the Godot editor and external IDEs/editors, for things like opening files, triggering hot-reload and running the game with a debugger attached.
22 lines
465 B
C#
22 lines
465 B
C#
using System.Linq;
|
|
|
|
namespace GodotTools.IdeConnection
|
|
{
|
|
public struct Message
|
|
{
|
|
public string Id { get; set; }
|
|
public string[] Arguments { get; set; }
|
|
|
|
public Message(string id, params string[] arguments)
|
|
{
|
|
Id = id;
|
|
Arguments = arguments;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return $"(Id: '{Id}', Arguments: '{string.Join(",", Arguments)}')";
|
|
}
|
|
}
|
|
}
|