mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 15:23:58 +00:00
7 lines
148 B
C#
7 lines
148 B
C#
namespace MikuSB.GameServer.Server.CallGS;
|
|
|
|
public interface ICallGSHandler
|
|
{
|
|
Task Handle(Connection connection, string param, ushort seqNo);
|
|
}
|