mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-27 06:18:52 +00:00
12 lines
316 B
C#
12 lines
316 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();
|
|
}
|
|
} |