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