mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-17 07:59:29 -07:00
22 lines
297 B
Plaintext
22 lines
297 B
Plaintext
#define softball_width 16
|
|
#define softball_height 16
|
|
static char softball_bits[] = {
|
|
0xc0, 0x03,
|
|
0xf0, 0x0f,
|
|
0xf8, 0x1f,
|
|
0xf4, 0x2f,
|
|
0xee, 0x77,
|
|
0xee, 0x77,
|
|
0xdf, 0xfb,
|
|
0xdf, 0xfb,
|
|
0xdf, 0xfb,
|
|
0xdf, 0xfb,
|
|
0xee, 0x77,
|
|
0xee, 0x77,
|
|
0xf4, 0x2f,
|
|
0xf8, 0x1f,
|
|
0xf0, 0x0f,
|
|
0xc0, 0x03,
|
|
|
|
};
|