10 lines
446 B
Plaintext
10 lines
446 B
Plaintext
#define cave_3_width 24
|
|
#define cave_3_height 24
|
|
static char cave_3_bits[] = {
|
|
0x00,0x00,0x80,0x00,0x00,0xc0,0x00,0x00,0xe0,0x00,0x00,0xe0,
|
|
0x00,0x00,0xf8,0x00,0x00,0xfc,0x00,0x00,0xfe,0x00,0x00,0xfe,
|
|
0x00,0x80,0xff,0x00,0xc0,0xff,0x00,0xe0,0xff,0x00,0xf8,0xff,
|
|
0x00,0xf8,0xff,0x00,0xfc,0xff,0x00,0xfe,0xff,0x00,0xfe,0xff,
|
|
0x80,0xff,0xff,0xc0,0xff,0xff,0xe0,0xff,0xff,0xf8,0xff,0xff,
|
|
0xf8,0xff,0xff,0xfc,0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff};
|