mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2024-11-13 00:54:37 +00:00
7 lines
125 B
C#
7 lines
125 B
C#
|
namespace Supercell.GUT.Server.Network;
|
|||
|
internal interface IServerGateway
|
|||
|
{
|
|||
|
void Start();
|
|||
|
Task ShutdownAsync();
|
|||
|
}
|