Hello,
great library by the way. It helped me in so many things.
Anyway I'm trying to execute some functions from vtable and i got stuck.
virtual bool IsInGame( void )
Works very easily
public static bool IsInGame() { return AppMemory[GetFunction(Pointer, 26), false].Execute<bool>(); }
How about This one :
virtual void ExecuteCmd( const char *CmdString )
Even easier
public static void ExecuteCmd(string cmd) { AppMemory[GetFunction(Pointer, 33), false].Execute(cmd); }
Now i'm wondering how do i execute function when paramaters are references like this one :
virtual void GetScreenSize( int& width, int& height )