more CAutomobile::ProcessControl

This commit is contained in:
aap
2019-07-17 23:58:06 +02:00
parent fa98f40f7c
commit ba242bcf58
17 changed files with 605 additions and 37 deletions

View File

@ -3,3 +3,4 @@
#include "Rubbish.h"
WRAPPER void CRubbish::Render(void) { EAXJMP(0x512190); }
WRAPPER void CRubbish::StirUp(CVehicle *veh) { EAXJMP(0x512690); }

View File

@ -1,7 +1,10 @@
#pragma once
class CVehicle;
class CRubbish
{
public:
static void Render(void);
static void StirUp(CVehicle *veh); // CAutomobile on PS2
};