summaryrefslogtreecommitdiffstats
path: root/src/render/Rubbish.h
blob: c94ff3038f79d8ca8e46c0a6351bfbfb2a1da4aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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);
};