summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/wpc_flip2.h
blob: 5c9a5acf1b9a59ed297c2958e51a8be0de54f72f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// license:BSD-3-Clause
// copyright-holders:Barry Rodewald
/*
 * wpc_flip2.h
 *
 */

#ifndef WPC_FLIP2_H_
#define WPC_FLIP2_H_

#include "includes/wpc_flip1.h"

class wpc_flip2_state : public wpc_flip1_state
{
public:
	wpc_flip2_state(const machine_config &mconfig, device_type type, const char *tag)
		: wpc_flip1_state(mconfig, type, tag)
	{ }
public:
	DECLARE_DRIVER_INIT(wpc_flip2);
};

#endif /* WPC_FLIP2_H_ */