summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tigeroad_spr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/tigeroad_spr.h')
-rw-r--r--src/mame/video/tigeroad_spr.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/mame/video/tigeroad_spr.h b/src/mame/video/tigeroad_spr.h
new file mode 100644
index 00000000000..80aec88b667
--- /dev/null
+++ b/src/mame/video/tigeroad_spr.h
@@ -0,0 +1,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;