mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 12:54:51 +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);
|
|
}
|
|
} |