mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 04:29:00 +00:00
10 lines
144 B
C++
10 lines
144 B
C++
#pragma once
|
|
|
|
class CVehicle;
|
|
|
|
class CRubbish
|
|
{
|
|
public:
|
|
static void Render(void);
|
|
static void StirUp(CVehicle *veh); // CAutomobile on PS2
|
|
};
|