This commit is contained in:
Kei-Luna
2026-04-22 05:31:08 +09:00
parent fe3c871992
commit 2a961704a8
6 changed files with 89 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
namespace MikuSB.GameServer.Server.CallGS;
public interface ICallGSHandler
{
Task Handle(Connection connection, string param, ushort seqNo);
}