feat: reorganize debug screen (#496)

* feat(git): greatly simplify ignore list
* refactor: removed old include
This commit is contained in:
Yimura
2022-10-21 22:05:39 +02:00
committed by GitHub
parent b8ed681a39
commit 06f2897f08
17 changed files with 327 additions and 676 deletions

View File

@ -18,7 +18,8 @@ namespace big
if (g_player_service->get_selected()->is_valid())
{
if (ImGui::TreeNode("Misc")) {
if (ImGui::TreeNode("Misc"))
{
components::button("Steal Outfit", [] {
ped::steal_outfit(
PLAYER::GET_PLAYER_PED_SCRIPT_INDEX(g_player_service->get_selected()->id())
@ -166,8 +167,8 @@ namespace big
ImGui::TreePop();
}
if (ImGui::TreeNode("Teleport")) {
if (ImGui::TreeNode("Teleport"))
{
components::button("Teleport", [] {
teleport::to_player(g_player_service->get_selected()->id());
});