добавлены реализации

This commit is contained in:
2025-01-11 22:44:29 +03:00
parent 7b60a07039
commit a4372ceb9e
14 changed files with 248 additions and 17 deletions
+7
View File
@@ -0,0 +1,7 @@
namespace mROA;
public interface IInteractionModule
{
void SetInteractionHandler(Action<(int clientId, byte[] message)> handler);
void SendTo(int clientId, byte[] message);
}