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