You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-22 15:06:45 +00:00
10 lines
231 B
C#
10 lines
231 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace GodotTools.IdeMessaging
|
|
{
|
|
public interface IMessageHandler
|
|
{
|
|
public Task<MessageContent> HandleRequest(Peer peer, string id, MessageContent content, ILogger logger);
|
|
}
|
|
}
|