10 lines
440 B
Plaintext
10 lines
440 B
Plaintext
#define food_width 24
|
|
#define food_height 24
|
|
static char food_bits[] = {
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x3e,0x00,0x00,0x1c,0x00,
|
|
0x00,0x1c,0x00,0x00,0x1c,0x00,0x00,0x1c,0x00,0x00,0x1c,0x00,
|
|
0x00,0x7f,0x00,0x80,0xff,0x00,0xc0,0xf8,0x01,0xc0,0xfd,0x01,
|
|
0xc0,0xfd,0x01,0x40,0xe5,0x01,0xc0,0xd4,0x01,0xc0,0xd7,0x01,
|
|
0xc0,0xd7,0x01,0xc0,0xe7,0x01,0xc0,0xff,0x01,0xc0,0xff,0x01,
|
|
0x80,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|