re3-wiiu/src/render/Rubbish.h

14 lines
230 B
C
Raw Normal View History

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