feat: Vehicle control & Summon (#1175)

This commit is contained in:
DayibBaba
2023-04-05 19:54:29 +02:00
committed by GitHub
parent 24955f9019
commit 96d1c26242
21 changed files with 2106 additions and 49 deletions

View File

@ -48,6 +48,8 @@ namespace big
g_hotkey_service->update_hotkey("cmdexecutor", g.settings.hotkeys.cmd_excecutor);
if (ImGui::Hotkey("Repair PV", &g.settings.hotkeys.repairpv))
g_hotkey_service->update_hotkey("repairpv", g.settings.hotkeys.repairpv);
if (ImGui::Hotkey("Vehicle controller", &g.settings.hotkeys.open_vehicle_controller))
g_hotkey_service->update_hotkey("vehiclecontroller", g.settings.hotkeys.open_vehicle_controller);
ImGui::PopItemWidth();
}