mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-19 17:19:24 +00:00
CAutomobile ctor, car spawner, fixes
This commit is contained in:
parent
26502ee30a
commit
59145cea83
10 changed files with 230 additions and 48 deletions
|
@ -26,6 +26,12 @@ struct CDoor
|
|||
CVector m_vecSpeed;
|
||||
|
||||
CDoor(void);
|
||||
void Init(float minAngle, float maxAngle, int8 dir, int8 axis) {
|
||||
m_fMinAngle = minAngle;
|
||||
m_fMaxAngle = maxAngle;
|
||||
m_nDirn = dir;
|
||||
m_nAxis = axis;
|
||||
}
|
||||
void Open(float ratio);
|
||||
void Process(CVehicle *veh);
|
||||
float RetAngleWhenClosed(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue