add: function for the "Shoot" buttons

This commit is contained in:
jadis0x
2022-10-11 13:31:46 +03:00
committed by GitHub
parent f4284bd483
commit d97ab409c4

View File

@@ -195,6 +195,14 @@ void DrawMapSpecificTab() {
Misc::KnockoutPlayers(true);
}
if (ImGui::Button("Shoot Everyone (Town)")) {
Misc::ShootEveryone(true, true);
}
if (ImGui::Button("Shoot Yourself (Town)")) {
Misc::ShootEveryone(false, true);
}
if (ImGui::Button("Skip long interact")) {
Misc::SkipLongInteract();
}