blob: ac1d052d63d06c1b18dae3009228df10d169d5a8 (
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
|
/*****************************************************************************
*
* includes/pocketc.h
*
****************************************************************************/
#ifndef POCKETC_H_
#define POCKETC_H_
/*----------- defined in video/pocketc.c -----------*/
extern PALETTE_INIT( pocketc );
extern VIDEO_START( pocketc );
extern const unsigned short pocketc_colortable[8][2];
typedef const char *POCKETC_FIGURE[];
void pocketc_draw_special(bitmap_ind16 &bitmap,
int x, int y, const POCKETC_FIGURE fig, int color);
#endif /* POCKETC_H_ */
|