mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-16 23:49:29 -07:00
22 lines
285 B
Plaintext
22 lines
285 B
Plaintext
#define unit_width 12
|
|
#define unit_height 16
|
|
static char unit_bits[] = {
|
|
0x00, 0x00,
|
|
0x04, 0x08,
|
|
0xf4, 0x0b,
|
|
0x04, 0x08,
|
|
0x14, 0x0a,
|
|
0x04, 0x08,
|
|
0x14, 0x0a,
|
|
0x04, 0x08,
|
|
0xf4, 0x0b,
|
|
0x04, 0x08,
|
|
0x14, 0x0a,
|
|
0x04, 0x08,
|
|
0x14, 0x0a,
|
|
0x04, 0x08,
|
|
0xf4, 0x0b,
|
|
0x04, 0x08,
|
|
|
|
};
|