diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-11-05 10:57:31 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-11-05 10:57:31 +0100 |
commit | 1f56317d5f55b1dd33fb28363b555aa55a483a75 (patch) | |
tree | ef93828f8d7868f0c9336623f6feb02b757f3765 /src/client/render/core.h | |
parent | 75ecaa2173f327c1453bd36c2601b0833ecb905f (diff) | |
download | dragonfireclient-1f56317d5f55b1dd33fb28363b555aa55a483a75.tar.xz |
Added NodeESP
Diffstat (limited to 'src/client/render/core.h')
-rw-r--r-- | src/client/render/core.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/client/render/core.h b/src/client/render/core.h index 90b81b060..2040155a6 100644 --- a/src/client/render/core.h +++ b/src/client/render/core.h @@ -36,8 +36,10 @@ protected: bool show_minimap; bool draw_wield_tool; bool draw_crosshair; - bool draw_tracers; bool draw_esp; + bool draw_tracers; + bool draw_node_esp; + bool draw_node_tracers; IrrlichtDevice *device; video::IVideoDriver *driver; @@ -72,8 +74,8 @@ public: void initialize(); void draw(video::SColor _skycolor, bool _show_hud, bool _show_minimap, - bool _draw_wield_tool, bool _draw_crosshair, bool _draw_tracers, - bool _draw_esp); + bool _draw_wield_tool, bool _draw_crosshair, bool _draw_esp, + bool _draw_tracers, bool _draw_node_esp, bool _draw_node_tracers); inline v2u32 getVirtualSize() const { return virtual_size; } }; |