summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/pocketc.h
blob: 5edc361dc70b1274c91cb2bd4316bdd323b60371 (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
24
25
26
// license:GPL-2.0+
// copyright-holders:Peter Trauner
/*****************************************************************************
 *
 * includes/pocketc.h
 *
 ****************************************************************************/

#ifndef POCKETC_H_
#define POCKETC_H_

typedef const char *POCKETC_FIGURE[];

class pocketc_state : public driver_device
{
public:
	pocketc_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) { }

	DECLARE_PALETTE_INIT(pocketc);

	static const unsigned short pocketc_colortable[8][2];
	void pocketc_draw_special(bitmap_ind16 &bitmap,int x, int y, const POCKETC_FIGURE fig, int color);
};

#endif /* POCKETC_H_ */