diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-05 18:41:10 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-05 18:41:10 +0200 |
commit | faa32610e381db1d58ee2b57d3a6efc2e664fdec (patch) | |
tree | 8c6b2a6e8c4eaa08f815afa1a6faa4231e297e6c /src/client/renderingengine.h | |
parent | ee88f4b94f180faa2b44ff016381a0fe69426d88 (diff) | |
download | dragonfireclient-faa32610e381db1d58ee2b57d3a6efc2e664fdec.tar.xz |
Added ESP, fixed Tracers, improved Jesus
Diffstat (limited to 'src/client/renderingengine.h')
-rw-r--r-- | src/client/renderingengine.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/renderingengine.h b/src/client/renderingengine.h index 84ff4328d..c5fa8918b 100644 --- a/src/client/renderingengine.h +++ b/src/client/renderingengine.h @@ -118,15 +118,15 @@ public: } inline static void draw_scene(video::SColor skycolor, bool show_hud, - bool show_minimap, bool draw_wield_tool, bool draw_crosshair, bool draw_tracers) + bool show_minimap, bool draw_wield_tool, bool draw_crosshair, bool draw_tracers, bool draw_esp) { s_singleton->_draw_scene(skycolor, show_hud, show_minimap, - draw_wield_tool, draw_crosshair, draw_tracers); + draw_wield_tool, draw_crosshair, draw_tracers, draw_esp); } - inline static void initialize(Client *client, Hud *hud, Tracers *tracers) + inline static void initialize(Client *client, Hud *hud) { - s_singleton->_initialize(client, hud, tracers); + s_singleton->_initialize(client, hud); } inline static void finalize() { s_singleton->_finalize(); } @@ -149,9 +149,9 @@ private: bool clouds = true); void _draw_scene(video::SColor skycolor, bool show_hud, bool show_minimap, - bool draw_wield_tool, bool draw_crosshair, bool draw_tracers); + bool draw_wield_tool, bool draw_crosshair, bool draw_tracers, bool draw_esp); - void _initialize(Client *client, Hud *hud, Tracers *tracers); + void _initialize(Client *client, Hud *hud); void _finalize(); |