mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-16 23:49:29 -07:00
22 lines
288 B
Plaintext
22 lines
288 B
Plaintext
#define vader_width 16
|
|
#define vader_height 16
|
|
static char vader_bits[] = {
|
|
0xe0, 0x07,
|
|
0xf0, 0x0f,
|
|
0xf8, 0x1f,
|
|
0xf8, 0x1f,
|
|
0x98, 0x19,
|
|
0x8c, 0x31,
|
|
0xfc, 0x3f,
|
|
0xfc, 0x3f,
|
|
0x7c, 0x3e,
|
|
0xbe, 0x7d,
|
|
0x5e, 0x7a,
|
|
0x4e, 0x72,
|
|
0x57, 0xea,
|
|
0xff, 0xff,
|
|
0xf8, 0x1f,
|
|
0xe0, 0x07,
|
|
|
|
};
|