diff options
Diffstat (limited to 'src/client/game.h')
-rw-r--r-- | src/client/game.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/game.h b/src/client/game.h index c24d57413..a452c30c6 100644 --- a/src/client/game.h +++ b/src/client/game.h @@ -50,6 +50,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "gui/guiVolumeChange.h" #include "gui/mainmenumanager.h" #include "gui/profilergraph.h" +#include "gui/tracers.h" #include "mapblock.h" #include "minimap.h" #include "nodedef.h" // Needed for determining pointing to nodes @@ -792,6 +793,7 @@ public: static void freecamChangedCallback(const std::string &setting_name, void *data); static void settingChangedCallback(const std::string &setting_name, void *data); + static void updateAllMapBlocksCallback(const std::string &setting_name, void *data); void readSettings(); inline bool isKeyDown(GameKeyType k) @@ -869,6 +871,7 @@ public: std::unique_ptr<GameUI> m_game_ui; GUIChatConsole *gui_chat_console = nullptr; // Free using ->Drop() CheatMenu *m_cheat_menu = nullptr; + Tracers *m_tracers = nullptr; MapDrawControl *draw_control = nullptr; Camera *camera = nullptr; Clouds *clouds = nullptr; // Free using ->Drop() |