2025-08-12 19:30:40 +02:00

9 lines
154 B
C#

namespace skyscraper8.UI.MonoGame.Bridge;
public interface ImGuiRenderable : IDisposable
{
void Update();
void Render();
bool WasClosed();
}