mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-17 07:59:29 -07:00
22 lines
285 B
Plaintext
22 lines
285 B
Plaintext
#define tree_width 16
|
|
#define tree_height 16
|
|
static char tree_bits[] = {
|
|
0x80, 0x21,
|
|
0x80, 0x71,
|
|
0x40, 0xfb,
|
|
0xc0, 0x73,
|
|
0xa0, 0x25,
|
|
0xb0, 0x0e,
|
|
0xd0, 0x0b,
|
|
0x78, 0x15,
|
|
0xf4, 0x1b,
|
|
0x5c, 0x3f,
|
|
0xf6, 0x6d,
|
|
0x5e, 0x77,
|
|
0xeb, 0xad,
|
|
0x7f, 0xff,
|
|
0xc0, 0x03,
|
|
0xc0, 0x03,
|
|
|
|
};
|