mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-16 23:49:29 -07:00
22 lines
282 B
Plaintext
22 lines
282 B
Plaintext
#define sun_width 16
|
|
#define sun_height 16
|
|
static char sun_bits[] = {
|
|
0x00, 0x00,
|
|
0xfc, 0x4a,
|
|
0x02, 0xaa,
|
|
0xfc, 0xaa,
|
|
0x00, 0xaa,
|
|
0x7e, 0xaa,
|
|
0x80, 0xaa,
|
|
0x7e, 0xa4,
|
|
0x00, 0x00,
|
|
0x4a, 0xfc,
|
|
0xaa, 0x02,
|
|
0xaa, 0xfc,
|
|
0xaa, 0x00,
|
|
0xaa, 0x7e,
|
|
0xaa, 0x80,
|
|
0xa4, 0x7e,
|
|
|
|
};
|