1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

[3.2] C#: Rewrite GodotTools messaging protocol

This commit is contained in:
Ignacio Etcheverry
2020-05-09 20:45:43 +02:00
parent aa57bb0473
commit fb2e00a854
44 changed files with 2252 additions and 1142 deletions

View File

@@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace GodotTools.IdeMessaging
{
public interface IMessageHandler
{
Task<MessageContent> HandleRequest(Peer peer, string id, MessageContent content, ILogger logger);
}
}