mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-17 07:59:29 -07:00
22 lines
288 B
Plaintext
22 lines
288 B
Plaintext
#define black_width 16
|
|
#define black_height 16
|
|
static char black_bits[] = {
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
0xff, 0xff,
|
|
|
|
};
|