Vehicle Abilities (#2474)

Co-authored-by: Yimura <24669514+Yimura@users.noreply.github.com>
This commit is contained in:
thehorizon84
2023-12-05 11:35:05 +01:00
committed by GitHub
parent 11d48f49f9
commit b80865f34c
6 changed files with 224 additions and 18 deletions

View File

@ -2004,6 +2004,14 @@ enum class eVehicleSeats
OUTSIDE_RIGHT,
};
enum class eVehicleAbilities : uint16_t
{
JUMP = 1 << 5,
ROCKET = 1 << 6,
PARACHUTE = 1 << 8,
RAMP_BUGGY = 1 << 9
};
enum class eKnockOffVehicle
{
KNOCKOFFVEHICLE_DEFAULT,