Supercell.GUT/Supercell.GUT.Titan/Debugging/IDebuggerListener.cs
BreadDEV ad23f95319 [v0.0.1] very early state server
only basic messages, wip.
2024-03-04 20:19:32 +07:00

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