mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 14:39:29 -07:00
22 lines
288 B
Plaintext
22 lines
288 B
Plaintext
#define dice3_width 16
|
|
#define dice3_height 16
|
|
static char dice3_bits[] = {
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xcf,
|
|
0xff, 0xcf,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0x7f, 0xfe,
|
|
0x7f, 0xfe,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xf3, 0xff,
|
|
0xf3, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
|
|
};
|