1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-11 06:28:31 +00:00
re3/src/render/Rubbish.h
2020-03-22 17:23:40 +03:00

14 lines
230 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);
};