mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-18 08:29:29 -07:00
7 lines
293 B
C
7 lines
293 B
C
#define pat_wiggly_width 16
|
|
#define pat_wiggly_height 16
|
|
static char pat_wiggly_bits[] = {
|
|
0x33, 0x33, 0xcc, 0xcc, 0xff, 0xff, 0xff, 0xff, 0x33, 0x33, 0xcc, 0xcc,
|
|
0xff, 0xff, 0xff, 0xff, 0x33, 0x33, 0xcc, 0xcc, 0xff, 0xff, 0xff, 0xff,
|
|
0x33, 0x33, 0xcc, 0xcc, 0xff, 0xff, 0xff, 0xff};
|