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 arrb_turn_width 16
|
|
#define arrb_turn_height 16
|
|
static char arrb_turn_bits[] = {
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x20, 0x00,
|
|
0x30, 0x00,
|
|
0xf8, 0x0f,
|
|
0xfc, 0x1f,
|
|
0x0e, 0x18,
|
|
0xfc, 0x1b,
|
|
0xf8, 0x1b,
|
|
0x30, 0x1b,
|
|
0x20, 0x1b,
|
|
0x00, 0x1b,
|
|
0x00, 0x1f,
|
|
0x00, 0x1f,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
|
|
};
|