mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-17 07:59:29 -07:00
22 lines
285 B
Plaintext
22 lines
285 B
Plaintext
#define club_width 16
|
|
#define club_height 16
|
|
static char club_bits[] = {
|
|
0xc0, 0x01,
|
|
0xe0, 0x03,
|
|
0xf0, 0x07,
|
|
0xf0, 0x07,
|
|
0xf0, 0x07,
|
|
0xe0, 0x03,
|
|
0xdc, 0x1d,
|
|
0xbe, 0x3e,
|
|
0xff, 0x7f,
|
|
0x7f, 0x7f,
|
|
0xff, 0x7f,
|
|
0xbe, 0x3e,
|
|
0x9c, 0x1c,
|
|
0xc0, 0x01,
|
|
0xc0, 0x01,
|
|
0xe0, 0x03,
|
|
|
|
};
|