aboutsummaryrefslogtreecommitdiff
path: root/src/games/Game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/games/Game.hpp')
-rw-r--r--src/games/Game.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/games/Game.hpp b/src/games/Game.hpp
index 7de3b66..a020012 100644
--- a/src/games/Game.hpp
+++ b/src/games/Game.hpp
@@ -35,8 +35,8 @@ public:
protected:
- void DrawGameOverMenu();
- void DrawGamePausedMenu();
+ void DrawDefaultGameOverMenu();
+ void DrawDefaultGamePausedMenu();
float ProcessDt();
@@ -46,6 +46,9 @@ protected:
protected:
+ static constexpr const char* s_dejavu_sans_filepath = "./fonts/dejavu_ttf/DejaVuSans.ttf";
+ static constexpr const char* s_dejavu_sans_mono_filepath = "./fonts/dejavu_ttf/DejaVuSansMono.ttf";
+
static constexpr ImGuiWindowFlags s_imgui_window_flags_menu = ImGuiWindowFlags_NoFocusOnAppearing | ImGuiWindowFlags_AlwaysAutoResize;
static constexpr ImGuiWindowFlags s_imgui_window_flags_default = ImGuiWindowFlags_NoNav | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoBackground | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoInputs | ImGuiWindowFlags_NoScrollbar;
};