1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-13 12:58:30 +00:00
re3/src/render/Rubbish.h

15 lines
259 B
C
Raw Normal View History

#pragma once
2019-07-17 21:58:06 +00:00
class CVehicle;
class CRubbish
{
public:
static void Render(void);
2019-07-17 21:58:06 +00:00
static void StirUp(CVehicle *veh); // CAutomobile on PS2
2019-10-18 22:23:40 +00:00
static void Update(void);
2020-02-15 11:53:42 +00:00
static void SetVisibility(bool);
2020-03-22 14:23:40 +00:00
static void Init(void);
static void Shutdown(void);
};