mirror of
https://github.com/wallace-aph/tiles-and-such.git
synced 2026-04-14 14:39:29 -07:00
22 lines
294 B
Plaintext
22 lines
294 B
Plaintext
#define ellipse_width 16
|
|
#define ellipse_height 16
|
|
static char ellipse_bits[] = {
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0xf8, 0x1f,
|
|
0x04, 0x20,
|
|
0x02, 0x40,
|
|
0x02, 0x40,
|
|
0x02, 0x40,
|
|
0x02, 0x40,
|
|
0x02, 0x40,
|
|
0x04, 0x20,
|
|
0xf8, 0x1f,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
0x00, 0x00,
|
|
|
|
};
|