summaryrefslogtreecommitdiff
path: root/ui/applicationBase.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2024-06-05 02:21:00 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2024-06-05 02:21:00 +0100
commite4ed331cea817e55956200c9c116f8d11b54c86b (patch)
treeff152032ea715d1dbac39904c154baae6e9202d1 /ui/applicationBase.h
parentBuild and link imgui with sdl2 and opengl2 backends (diff)
downloadilt-e4ed331cea817e55956200c9c116f8d11b54c86b.tar.bz2
ilt-e4ed331cea817e55956200c9c116f8d11b54c86b.tar.xz
ilt-e4ed331cea817e55956200c9c116f8d11b54c86b.zip
Add imgui init and shutdown to appbase and gamemainwindow
Diffstat (limited to 'ui/applicationBase.h')
-rw-r--r--ui/applicationBase.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ui/applicationBase.h b/ui/applicationBase.h
index 9d9b66b..082557d 100644
--- a/ui/applicationBase.h
+++ b/ui/applicationBase.h
@@ -9,4 +9,8 @@ public:
NO_COPY(ApplicationBase);
NO_MOVE(ApplicationBase);
+
+private:
+ void initSDL() const;
+ void initImGUI() const;
};