mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 21:59:16 +00:00
12 lines
263 B
C#
12 lines
263 B
C#
|
namespace Mirror.FizzySteam
|
|||
|
{
|
|||
|
public interface IClient
|
|||
|
{
|
|||
|
bool Connected { get; }
|
|||
|
bool Error { get; }
|
|||
|
void ReceiveData();
|
|||
|
void Disconnect();
|
|||
|
void FlushData();
|
|||
|
void Send(byte[] data, int channelId);
|
|||
|
}
|
|||
|
}
|