diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-11-28 14:23:29 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-11-28 14:23:29 +0100 |
commit | 549025f6a1216a8b0eb90bf07b493d44b8e8e3e2 (patch) | |
tree | f4914f49442a60cdf5f7c70ee66a899877e1d6de /src/client/renderingengine.h | |
parent | eb6aca8b4a67ef55108231e71ff29a18a29bf5ae (diff) | |
download | dragonfireclient-549025f6a1216a8b0eb90bf07b493d44b8e8e3e2.tar.xz |
EntityESP, EntityTracers, PlayerESP, PlayerTracers
Diffstat (limited to 'src/client/renderingengine.h')
-rw-r--r-- | src/client/renderingengine.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/renderingengine.h b/src/client/renderingengine.h index 99aa3c678..34cc60630 100644 --- a/src/client/renderingengine.h +++ b/src/client/renderingengine.h @@ -117,10 +117,10 @@ public: } inline static void draw_scene(video::SColor skycolor, bool show_hud, - bool show_minimap, bool draw_wield_tool, bool draw_crosshair, bool draw_esp, bool draw_tracers, bool draw_node_esp, bool draw_node_tracers) + bool show_minimap, bool draw_wield_tool, bool draw_crosshair) { s_singleton->_draw_scene(skycolor, show_hud, show_minimap, - draw_wield_tool, draw_crosshair, draw_esp, draw_tracers, draw_node_esp, draw_node_tracers); + draw_wield_tool, draw_crosshair); } inline static void initialize(Client *client, Hud *hud) @@ -148,7 +148,7 @@ 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_esp, bool draw_tracers, bool draw_node_esp, bool draw_node_tracers); + bool draw_wield_tool, bool draw_crosshair); void _initialize(Client *client, Hud *hud); |