mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 14:39:29 -07:00
22 lines
297 B
Plaintext
22 lines
297 B
Plaintext
#define bullseye_width 16
|
|
#define bullseye_height 16
|
|
static char bullseye_bits[] = {
|
|
0xe0, 0x03,
|
|
0xf0, 0x07,
|
|
0x18, 0x0c,
|
|
0x0c, 0x18,
|
|
0x06, 0x30,
|
|
0x03, 0x60,
|
|
0xc3, 0x61,
|
|
0xc3, 0x61,
|
|
0xc3, 0x61,
|
|
0x03, 0x60,
|
|
0x06, 0x30,
|
|
0x0c, 0x18,
|
|
0x18, 0x0c,
|
|
0xf0, 0x07,
|
|
0xe0, 0x03,
|
|
0x00, 0x00,
|
|
|
|
};
|