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 brain_width 16
|
|
#define brain_height 16
|
|
static char brain_bits[] = {
|
|
0xf8, 0x07,
|
|
0x04, 0x08,
|
|
0xfa, 0x17,
|
|
0x0d, 0x2c,
|
|
0x05, 0x28,
|
|
0x05, 0x28,
|
|
0x05, 0x2f,
|
|
0x8d, 0x41,
|
|
0xd9, 0x80,
|
|
0x72, 0xf0,
|
|
0x04, 0x20,
|
|
0x08, 0x3c,
|
|
0x08, 0x20,
|
|
0x10, 0x20,
|
|
0x30, 0x10,
|
|
0xc0, 0x0f,
|
|
|
|
};
|