mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 14:39:29 -07:00
22 lines
285 B
Plaintext
22 lines
285 B
Plaintext
#define bats_width 16
|
|
#define bats_height 16
|
|
static char bats_bits[] = {
|
|
0x09, 0x20,
|
|
0x0d, 0x60,
|
|
0x1d, 0x70,
|
|
0x5c, 0x74,
|
|
0xde, 0xf7,
|
|
0x5e, 0xf5,
|
|
0xde, 0xf7,
|
|
0xbe, 0xfb,
|
|
0xf6, 0xdf,
|
|
0xf2, 0x9f,
|
|
0xe2, 0x8f,
|
|
0xa3, 0x8b,
|
|
0x21, 0x08,
|
|
0xa1, 0x0a,
|
|
0x21, 0x08,
|
|
0x41, 0x04,
|
|
|
|
};
|