first commit
This commit is contained in:
11
NitroxClient/Debuggers/Drawer/IEditorDrawer.cs
Normal file
11
NitroxClient/Debuggers/Drawer/IEditorDrawer.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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);
|
||||
}
|
Reference in New Issue
Block a user