1
2#if !defined(tile_width) && !defined(tile_height)
3
4#define tile_width 16
5#define tile_height 16
6
7#ifdef DEFINE_TILE
8
9static unsigned char tile_bits[] = {
10   0xff, 0x80, 0xfc, 0x80, 0x70, 0xc0, 0xc0, 0xc0, 0xe0, 0xe3, 0xe0, 0xef,
11   0xf0, 0xff, 0xf0, 0xdf, 0xfb, 0x0f, 0xff, 0x0f, 0xf7, 0x07, 0xc7, 0x07,
12   0x03, 0x03, 0x03, 0x0e, 0x01, 0x3f, 0x01, 0xff};
13
14#endif
15
16#endif
17