2025-08-11 19:36:09 +02:00

9 lines
150 B
C#

namespace ImGuiNET.SampleProgram.XNA;
public interface ImGuiRenderable : IDisposable
{
void Update();
void Render();
bool WasClosed();
}