namespace NitroxClient.Debuggers.Drawer; public interface IDrawer { void Draw(T target); } public interface IDrawer : IDrawer where TDrawOptions : class { void Draw(T target, TDrawOptions options); }