mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-02-24 16:34:24 +01:00
10 lines
224 B
C#
10 lines
224 B
C#
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace GodotTools.IdeMessaging
|
||
|
{
|
||
|
public interface IMessageHandler
|
||
|
{
|
||
|
Task<MessageContent> HandleRequest(Peer peer, string id, MessageContent content, ILogger logger);
|
||
|
}
|
||
|
}
|