TmpMenu/src/views/debug/view_debug.hpp
Arthur eb68394382 feat(debug): Add Tunables Tab (#3431)
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.
2024-07-26 11:05:47 +02:00

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();
}