add: function for "revive yourself" and "revive everyone" buttons

This commit is contained in:
jadis0x
2022-10-08 01:17:22 +03:00
committed by GitHub
parent 68b8c5e1d4
commit 6004834dde

View File

@@ -305,6 +305,14 @@ void DrawMiscTab() {
//Unlock Achievements
}
if (ImGui::Button("Revive Yourself")) {
Misc::Revive(false);
}
if (ImGui::Button("Revive Everyone")) {
Misc::Revive(true);
}
ImGui::Checkbox("Unlock all", &settings::unlock_all);
ImGui::Checkbox("Spoof level", &settings::spoof_level);