first commit
This commit is contained in:
11
NitroxClient/Debuggers/Drawer/IDrawer.cs
Normal file
11
NitroxClient/Debuggers/Drawer/IDrawer.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace NitroxClient.Debuggers.Drawer;
|
||||
|
||||
public interface IDrawer<in T>
|
||||
{
|
||||
void Draw(T target);
|
||||
}
|
||||
|
||||
public interface IDrawer<in T, in TDrawOptions> : IDrawer<T> where TDrawOptions : class
|
||||
{
|
||||
void Draw(T target, TDrawOptions options);
|
||||
}
|
Reference in New Issue
Block a user