diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-06-05 02:21:00 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-06-05 02:21:00 +0100 |
commit | e4ed331cea817e55956200c9c116f8d11b54c86b (patch) | |
tree | ff152032ea715d1dbac39904c154baae6e9202d1 /ui/applicationBase.h | |
parent | Build and link imgui with sdl2 and opengl2 backends (diff) | |
download | ilt-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.h | 4 |
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; }; |