mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-27 03:35:20 +00:00
12 lines
319 B
C#
12 lines
319 B
C#
|
namespace Mirror.FizzySteam
|
|||
|
{
|
|||
|
public interface IServer
|
|||
|
{
|
|||
|
void ReceiveData();
|
|||
|
void Send(int connectionId, byte[] data, int channelId);
|
|||
|
void Disconnect(int connectionId);
|
|||
|
void FlushData();
|
|||
|
string ServerGetClientAddress(int connectionId);
|
|||
|
void Shutdown();
|
|||
|
}
|
|||
|
}
|