mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
f7ed57a787
This reverts commit c049b94527
.
12 lines
218 B
C#
12 lines
218 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);
|
|
}
|
|
} |