This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/views/debug/view_debug.hpp
2023-08-04 14:43:35 +02:00

15 lines
348 B
C++

#pragma once
namespace big::debug
{
extern void globals();
extern void locals();
extern void logs();
extern void misc();
extern void script_events();
extern void scripts();
extern void threads();
extern void animations(std::string* dict = nullptr, std::string* anim = nullptr); // Can be used to retrieve animations
extern void main();
}