mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 14:39:29 -07:00
22 lines
294 B
Plaintext
22 lines
294 B
Plaintext
#define yinyang_width 16
|
|
#define yinyang_height 16
|
|
static char yinyang_bits[] = {
|
|
0xe0, 0x07,
|
|
0xf8, 0x1f,
|
|
0xfc, 0x3f,
|
|
0xfe, 0x7f,
|
|
0xfe, 0x7f,
|
|
0xff, 0xff,
|
|
0xc3, 0xff,
|
|
0x99, 0xe7,
|
|
0x19, 0xe7,
|
|
0x01, 0xfe,
|
|
0x01, 0xbc,
|
|
0x02, 0x40,
|
|
0x02, 0x40,
|
|
0x04, 0x20,
|
|
0x18, 0x18,
|
|
0xe0, 0x07,
|
|
|
|
};
|