using System; using UnityEngine; namespace AllocsFixes.NetConnections { public interface IServer { void Disconnect (); void SendLine (string line); void SendLog (string text, string trace, LogType type); } }