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