feat(Players): Added cage button

This commit is contained in:
Yimura 2021-01-15 02:20:46 +01:00
parent 3fe2e840ad
commit f8c1dc4329
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -159,6 +159,14 @@ namespace big
}QUEUE_JOB_END_CLAUSE
}
if (ImGui::Button("Cage"))
{
QUEUE_JOB_BEGIN_CLAUSE()
{
features::functions::cage_ped(PLAYER::GET_PLAYER_PED_SCRIPT_INDEX(g_selectedPlayer.id));
}QUEUE_JOB_END_CLAUSE
}
ImGui::End();
}
}