mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-16 23:49:29 -07:00
22 lines
288 B
Plaintext
22 lines
288 B
Plaintext
#define arrow_width 16
|
|
#define arrow_height 16
|
|
static char arrow_bits[] = {
|
|
0xfc, 0x00,
|
|
0xf8, 0x00,
|
|
0xf0, 0x00,
|
|
0xf8, 0x00,
|
|
0xdc, 0x00,
|
|
0x8e, 0x00,
|
|
0x07, 0x00,
|
|
0x03, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
|
|
};
|