mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 06:29:30 -07:00
22 lines
306 B
Plaintext
22 lines
306 B
Plaintext
#define boundarypad_width 16
|
|
#define boundarypad_height 16
|
|
static char boundarypad_bits[] = {
|
|
0xf0, 0xff,
|
|
0xf0, 0xff,
|
|
0x30, 0xc0,
|
|
0x30, 0xc0,
|
|
0x30, 0xc0,
|
|
0x3f, 0xc0,
|
|
0x3f, 0xc0,
|
|
0x30, 0xc0,
|
|
0x30, 0xc0,
|
|
0x30, 0xc0,
|
|
0xf0, 0xff,
|
|
0xf0, 0xff,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
|
|
};
|