feat: added boat pickup, ballistic armor and keep on ground (#932)

This commit is contained in:
yasmasdas
2023-02-04 23:49:44 +01:00
committed by GitHub
parent fa7e5e5a34
commit b87d4e0e1b
6 changed files with 64 additions and 1 deletions

View File

@ -19,6 +19,8 @@ namespace big
mobile::merry_weather::request_helicopter_pickup();
});
components::command_button<"boatpickup">();
components::button("MW_BACKUP_HELI"_T, [] {
mobile::merry_weather::request_backup_helicopter();
});
@ -44,5 +46,6 @@ namespace big
mobile::ceo_abilities::request_bullshark_testosterone();
});
components::command_button<"ballisticarmor">();
}
}

View File

@ -97,6 +97,7 @@ namespace big
ImGui::Checkbox("FULLY_AUTOMATIC_SIGNAL"_T.data(), &g.vehicle.auto_turn_signals);
}
components::command_checkbox<"driveunder">();
components::command_checkbox<"keeponground">();
ImGui::EndGroup();
}