10 lines
458 B
Plaintext
10 lines
458 B
Plaintext
#define centipede1_width 24
|
|
#define centipede1_height 24
|
|
static char centipede1_bits[] = {
|
|
0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x80,0x0f,0x00,0x00,0x0f,
|
|
0x00,0xc0,0x3f,0x00,0x80,0x03,0x00,0xe0,0x0f,0x00,0x80,0x01,
|
|
0x00,0xf0,0x07,0x00,0xc0,0x00,0x00,0xf8,0x03,0x00,0x70,0x00,
|
|
0x00,0xf6,0x01,0x00,0x3c,0x00,0x80,0xfd,0x00,0x0c,0x1f,0x00,
|
|
0xde,0x6f,0x00,0xf8,0x1b,0x00,0xf0,0x06,0x00,0xb8,0x01,0x00,
|
|
0x1e,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|