add imgui support

This commit is contained in:
2024-08-07 15:01:42 +02:00
parent e0d4dd053f
commit 2df849b63e
9 changed files with 186 additions and 5 deletions

View File

@@ -22,6 +22,10 @@ class ClientApp : public Nz::ApplicationComponent {
void Update(Nz::Time elapsedTime) override;
Nz::Window* GetWindow() {
return m_Window;
}
private:
Nz::Window* m_Window;
std::unique_ptr<Nz::StateMachine> m_StateMachine;