Files
2017-10-19 12:40:28 -04:00

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,
};