mirror of
https://github.com/thebreaddev/Supercell.GUT.git
synced 2025-04-18 11:22:35 +00:00
9 lines
227 B
C#
9 lines
227 B
C#
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();
|
|
}
|