diff options
Diffstat (limited to 'cheat/internal_rewrite/IPanel.hpp')
| -rw-r--r-- | cheat/internal_rewrite/IPanel.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cheat/internal_rewrite/IPanel.hpp b/cheat/internal_rewrite/IPanel.hpp new file mode 100644 index 0000000..bbae705 --- /dev/null +++ b/cheat/internal_rewrite/IPanel.hpp @@ -0,0 +1,10 @@ +#pragma once +#include "util.hpp" + +class IPanel { +public: + const char* GetName( int panel ) { + using fn = const char* ( __thiscall* )( void*, int ); + return util::get_vfunc< fn >( this, 36 )( this, panel ); + } +};
\ No newline at end of file |
