mirror of
https://github.com/halpz/re3.git
synced 2025-01-16 21:37:09 +00:00
15 lines
259 B
C++
15 lines
259 B
C++
#pragma once
|
|
|
|
class CVehicle;
|
|
|
|
class CRubbish
|
|
{
|
|
public:
|
|
static void Render(void);
|
|
static void StirUp(CVehicle *veh); // CAutomobile on PS2
|
|
static void Update(void);
|
|
static void SetVisibility(bool);
|
|
static void Init(void);
|
|
static void Shutdown(void);
|
|
};
|