summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/wpc_flip1.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/wpc_flip1.h')
-rw-r--r--src/mame/includes/wpc_flip1.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mame/includes/wpc_flip1.h b/src/mame/includes/wpc_flip1.h
index dd53bb41d08..8f26f9ebd75 100644
--- a/src/mame/includes/wpc_flip1.h
+++ b/src/mame/includes/wpc_flip1.h
@@ -8,6 +8,8 @@
#ifndef MAME_INCLUDES_WPC_FLIP1_H
#define MAME_INCLUDES_WPC_FLIP1_H
+#pragma once
+
#include "includes/wpc_dot.h"
class wpc_flip1_state : public wpc_dot_state
@@ -16,9 +18,11 @@ public:
wpc_flip1_state(const machine_config &mconfig, device_type type, const char *tag)
: wpc_dot_state(mconfig, type, tag)
{ }
-public:
+
void init_wpc_flip1();
void wpc_flip1(machine_config &config);
+
+protected:
void wpc_flip1_map(address_map &map);
};