Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added KERS boost fields. #131

Merged
merged 1 commit into from
Aug 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion vehicle/CVehicle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ class CVehicle : public rage::CPhysical
float m_rpm; //0x08D0
char pad_08D4[0x34]; //0x8D4
float m_engine_health; //0x08E8
char pad_08EC[0x2C]; //0x08EC
char pad_08EC[0x18]; //0x08EC
float m_kers_boost_max; //0x0904
float m_kers_boost; //0x0908
char pad_090C[0xC]; //0x090C
CHandlingData* m_handling_data; //0x0918
char pad_0920[0x2]; //0x0920
uint8_t m_is_drivable; //0x0922
Expand Down