mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 14:39:29 -07:00
22 lines
303 B
Plaintext
22 lines
303 B
Plaintext
#define crosshairs_width 16
|
|
#define crosshairs_height 16
|
|
static char crosshairs_bits[] = {
|
|
0xc0, 0x03,
|
|
0xf0, 0x0f,
|
|
0x98, 0x19,
|
|
0x8c, 0x31,
|
|
0x86, 0x61,
|
|
0x82, 0x41,
|
|
0x83, 0xc1,
|
|
0x7f, 0xfe,
|
|
0x7f, 0xfe,
|
|
0x83, 0xc1,
|
|
0x82, 0x41,
|
|
0x86, 0x61,
|
|
0x8c, 0x31,
|
|
0x98, 0x19,
|
|
0xf0, 0x0f,
|
|
0xc0, 0x03,
|
|
|
|
};
|