diff options
Diffstat (limited to 'src/mame/includes/laserbat.h')
-rw-r--r-- | src/mame/includes/laserbat.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mame/includes/laserbat.h b/src/mame/includes/laserbat.h index 03b24b62c7b..56dbd070952 100644 --- a/src/mame/includes/laserbat.h +++ b/src/mame/includes/laserbat.h @@ -5,6 +5,10 @@ Laser Battle / Lazarian - Cat and Mouse *************************************************************************/ +#ifndef MAME_INCLUDES_LASERBAT_H +#define MAME_INCLUDES_LASERBAT_H + +#pragma once #include "audio/zaccaria.h" @@ -23,7 +27,6 @@ class laserbat_state_base : public driver_device { public: - laserbat_state_base(const machine_config &mconfig, device_type type, const char *tag) : driver_device(mconfig, type, tag) , m_mux_ports(*this, {"ROW0", "ROW1", "SW1", "SW2"}) @@ -164,7 +167,6 @@ public: void laserbat(machine_config &config); protected: - // initialisation/startup virtual void machine_start() override; @@ -206,3 +208,5 @@ protected: required_device<zac1b11107_audio_device> m_audiopcb; }; + +#endif // MAME_INCLUDES_LASERBAT_H |