mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 14:39:29 -07:00
22 lines
300 B
Plaintext
22 lines
300 B
Plaintext
#define bunnyface_width 16
|
|
#define bunnyface_height 16
|
|
static char bunnyface_bits[] = {
|
|
0x00, 0x00,
|
|
0x04, 0x40,
|
|
0x0e, 0xe0,
|
|
0x1e, 0xf0,
|
|
0x3e, 0xf8,
|
|
0x72, 0x9c,
|
|
0xc0, 0x06,
|
|
0x80, 0x03,
|
|
0xc0, 0x07,
|
|
0xe0, 0x0f,
|
|
0x70, 0x1d,
|
|
0xf0, 0x1e,
|
|
0x60, 0x0d,
|
|
0xc0, 0x06,
|
|
0x80, 0x03,
|
|
0x80, 0x03,
|
|
|
|
};
|