mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 20:17:24 +08:00
95969031df
* feat: dynamicly hooking x64 functions from lua at runtime with arbitrary signatures. * fix missing include * c/c++ include system is a good system
496 B
496 B
Class: value_wrapper
Class for wrapping parameters and return value of functions, used mostly by the dynamic_hook system.
Functions (2)
get()
Get the value currently contained by the wrapper.
- Returns:
any
: The current value.
Example Usage:
any = value_wrapper:get()
set(new_value)
Set the new value contained by the wrapper.
- Parameters:
new_value
(any): The new value.
Example Usage:
value_wrapper:set(new_value)