Files
Nitrox/NitroxClient/Debuggers/Drawer/IEditorDrawer.cs
2025-07-06 00:23:46 +02:00

12 lines
248 B
C#

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