namespace Supercell.GUT.Titan.Debugging; public interface IDebuggerListener { void OnPrint(string log); void OnWarning(string log); void OnError(string log); void OnHudPrint(string log); void Detach(); }