mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-16 23:49:29 -07:00
22 lines
294 B
Plaintext
22 lines
294 B
Plaintext
#define vampire_width 16
|
|
#define vampire_height 16
|
|
static char vampire_bits[] = {
|
|
0x11, 0x10,
|
|
0x09, 0x20,
|
|
0x2d, 0x68,
|
|
0x6d, 0x6c,
|
|
0xec, 0x6f,
|
|
0x4e, 0xe5,
|
|
0xde, 0xf7,
|
|
0xbe, 0xfb,
|
|
0xee, 0xef,
|
|
0xf6, 0xdf,
|
|
0xd2, 0x97,
|
|
0x92, 0x93,
|
|
0x13, 0x90,
|
|
0xb1, 0x1a,
|
|
0x21, 0x08,
|
|
0x41, 0x04,
|
|
|
|
};
|