re3-wiiu/src/render/Rubbish.h

13 lines
205 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 01:23:40 +03:00
static void Update(void);
2020-02-15 14:53:42 +03:00
static void SetVisibility(bool);
};