mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 06:47:22 +08:00

Added a Tunables tab similar to Globals/Locals that can be used to read and write tunables by inputting their unsigned/signed or hexadecimal hash, as well as their pre-joaat name. It also displays the offset of the given tunable. Removed the animation players in the Debug tab as the one in the Self tab makes them redundant.
15 lines
252 B
C++
15 lines
252 B
C++
#pragma once
|
|
|
|
namespace big::debug
|
|
{
|
|
extern void misc();
|
|
extern void logs();
|
|
extern void tunables();
|
|
extern void globals();
|
|
extern void locals();
|
|
extern void script_events();
|
|
extern void scripts();
|
|
extern void threads();
|
|
|
|
extern void main();
|
|
} |