mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-18 16:39:31 -07:00
7 lines
243 B
C
7 lines
243 B
C
#define stars_width 16
|
|
#define stars_height 16
|
|
static char stars_bits[] = {
|
|
0xfb,0xfb,0xe0,0xe0,0xf1,0xf1,0xf5,0xf5,0xbf,0xbf,0x0e,0x0e,0x1f,0x1f,0x5f,
|
|
0x5f,0xfb,0xfb,0xe0,0xe0,0xf1,0xf1,0xf5,0xf5,0xbf,0xbf,0x0e,0x0e,0x1f,0x1f,
|
|
0x5f,0x5f};
|