6 lines
113 B
C#
6 lines
113 B
C#
namespace NahidaImpact.Gameserver.Network;
|
|
internal interface IGateway
|
|
{
|
|
Task Start();
|
|
Task Stop();
|
|
}
|