summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tigeroad_spr.h
blob: 80aec88b667782ab43ae8e23a081a6bd3ef418f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class tigeroad_spr_device : public device_t
{
public:
	tigeroad_spr_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);

	void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, gfxdecode_device *gfxdecode, int region, UINT16* ram, UINT32 size, int flip_screen, int rev_y);

protected:

	virtual void device_start();
	virtual void device_reset();
private:
};

extern const device_type TIGEROAD_SPRITE;