21 lines
729 B
C
21 lines
729 B
C
#define hit_width 64
|
|
#define hit_height 16
|
|
static char hit_bits[] = {
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
0xe0,0x07,0xf0,0x07,0xe0,0x07,0xf0,0x0f,
|
|
0xf0,0x0f,0xf0,0x0f,0xf0,0x0f,0xf0,0x0f,
|
|
0x30,0x0c,0x30,0x0c,0x30,0x0c,0x30,0x0c,
|
|
0x30,0x0c,0x00,0x0c,0x30,0x0c,0x30,0x0c,
|
|
0x30,0x0c,0x00,0x0c,0x30,0x0c,0x00,0x06,
|
|
0x30,0x0c,0x00,0x0c,0xe0,0x0f,0x00,0x03,
|
|
0x30,0x0c,0xc0,0x0f,0xc0,0x0f,0x00,0x03,
|
|
0x30,0x0c,0xc0,0x0f,0x00,0x0e,0x80,0x01,
|
|
0x30,0x0c,0x00,0x0c,0x00,0x0e,0x80,0x01,
|
|
0x30,0x0c,0x00,0x0c,0x00,0x07,0xc0,0x00,
|
|
0x30,0x0c,0x00,0x0c,0x80,0x03,0xc0,0x00,
|
|
0x30,0x0c,0x30,0x0c,0xc0,0x01,0x60,0x00,
|
|
0xf0,0x0f,0xf0,0x0f,0xe0,0x00,0x60,0x00,
|
|
0xe0,0x07,0xf0,0x07,0x60,0x00,0x60,0x00,
|
|
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
|
|
};
|