mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-16 23:49:29 -07:00
22 lines
288 B
Plaintext
22 lines
288 B
Plaintext
#define ghost_width 16
|
|
#define ghost_height 16
|
|
static char ghost_bits[] = {
|
|
0x00, 0x00,
|
|
0x00, 0x0e,
|
|
0x0e, 0x11,
|
|
0x8a, 0x14,
|
|
0xda, 0x08,
|
|
0x72, 0xe4,
|
|
0x06, 0x9e,
|
|
0x3c, 0xc0,
|
|
0x30, 0x60,
|
|
0x18, 0x1e,
|
|
0x0c, 0x02,
|
|
0x06, 0x06,
|
|
0x02, 0x04,
|
|
0x7e, 0x0c,
|
|
0xc0, 0x0f,
|
|
0x00, 0x00,
|
|
|
|
};
|