mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-28 00:19:27 +00:00
14 lines
262 B
C#
14 lines
262 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);
|
||
|
}
|
||
|
}
|