9 lines
154 B
C#
9 lines
154 B
C#
namespace skyscraper8.UI.MonoGame.Bridge;
|
|
|
|
public interface ImGuiRenderable : IDisposable
|
|
{
|
|
void Update();
|
|
void Render();
|
|
|
|
bool WasClosed();
|
|
} |