9 lines
150 B
C#
9 lines
150 B
C#
namespace ImGuiNET.SampleProgram.XNA;
|
|
|
|
public interface ImGuiRenderable : IDisposable
|
|
{
|
|
void Update();
|
|
void Render();
|
|
|
|
bool WasClosed();
|
|
} |