diff options
Diffstat (limited to 'cheat/tf2/IVDebugOverlay.h')
| -rw-r--r-- | cheat/tf2/IVDebugOverlay.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cheat/tf2/IVDebugOverlay.h b/cheat/tf2/IVDebugOverlay.h new file mode 100644 index 0000000..664b356 --- /dev/null +++ b/cheat/tf2/IVDebugOverlay.h @@ -0,0 +1,10 @@ +#pragma once
+#include "VFunc.h"
+
+class vec3_t;
+class IVDebugOverlay {
+public:
+ int ScreenPosition( const vec3_t& point, vec3_t& screen ) {
+ return call_vfunc< int( __thiscall* )( void*, const vec3_t&, vec3_t& ) >( this, 10 )( this, point, screen );
+ }
+};
\ No newline at end of file |
