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