mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 14:39:29 -07:00
22 lines
291 B
Plaintext
22 lines
291 B
Plaintext
#define sheary_width 16
|
|
#define sheary_height 16
|
|
static char sheary_bits[] = {
|
|
0x10, 0x00,
|
|
0x10, 0x00,
|
|
0x50, 0x00,
|
|
0x50, 0x00,
|
|
0x50, 0x01,
|
|
0x50, 0x01,
|
|
0x50, 0x05,
|
|
0x50, 0x05,
|
|
0x50, 0x05,
|
|
0x50, 0x05,
|
|
0x40, 0x05,
|
|
0x40, 0x05,
|
|
0x00, 0x05,
|
|
0x00, 0x05,
|
|
0x00, 0x04,
|
|
0x00, 0x04,
|
|
|
|
};
|