Mister_Nebula f7ed57a787 Revert "Revert "cleanup fizzyfacepunch""
This reverts commit c049b94527a16c3ae0f04c644362cf5b3f3f114b.
2022-01-31 19:33:55 +00:00

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);
}
}