aboutsummaryrefslogtreecommitdiff
path: root/src/client/renderingengine.h
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2020-11-28 14:23:29 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2020-11-28 14:23:29 +0100
commit549025f6a1216a8b0eb90bf07b493d44b8e8e3e2 (patch)
treef4914f49442a60cdf5f7c70ee66a899877e1d6de /src/client/renderingengine.h
parenteb6aca8b4a67ef55108231e71ff29a18a29bf5ae (diff)
downloaddragonfireclient-549025f6a1216a8b0eb90bf07b493d44b8e8e3e2.tar.xz
EntityESP, EntityTracers, PlayerESP, PlayerTracers
Diffstat (limited to 'src/client/renderingengine.h')
-rw-r--r--src/client/renderingengine.h6
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);