Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. class convar
  2. {
  3. public:
  4.  
  5. // float 6
  6. //int 7
  7.  
  8. int GetFloat()
  9. {
  10. using OriginalFn = int(__thiscall *)(void *);
  11. global_utils::v_function<OriginalFn>(this, 6)(this);
  12. }
  13.  
  14.  
  15. int GetInt()
  16. {
  17. using OriginalFn = int(__thiscall *)(void *);
  18. global_utils::v_function<OriginalFn>(this, 7)(this);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement