mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 14:39:29 -07:00
22 lines
282 B
Plaintext
22 lines
282 B
Plaintext
#define eye_width 16
|
|
#define eye_height 16
|
|
static char eye_bits[] = {
|
|
0x00, 0x0c,
|
|
0x00, 0x06,
|
|
0x80, 0x03,
|
|
0xe0, 0x02,
|
|
0x38, 0x06,
|
|
0x0e, 0x07,
|
|
0x03, 0x07,
|
|
0x03, 0x07,
|
|
0x0e, 0x07,
|
|
0x38, 0x06,
|
|
0xe0, 0x02,
|
|
0x80, 0x03,
|
|
0x00, 0x06,
|
|
0x00, 0x04,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
|
|
};
|