mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 06:29:30 -07:00
7 lines
281 B
C
7 lines
281 B
C
#define grid16_width 16
|
|
#define grid16_height 16
|
|
static char grid16_bits[] = {
|
|
0xaa, 0xaa, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,
|
|
0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff,
|
|
0xfe, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff};
|