9 lines
317 B
Plaintext
9 lines
317 B
Plaintext
#define bomb_width 16
|
|
#define bomb_height 16
|
|
#define bomb_x_hot 6
|
|
#define bomb_y_hot 9
|
|
static char bomb_bits[] = {
|
|
0x00, 0x00, 0x00, 0x17, 0xc0, 0x28, 0xc0, 0x14, 0xf0, 0x21, 0xfc, 0x07,
|
|
0xec, 0x07, 0xe6, 0x0f, 0xf6, 0x0f, 0xf6, 0x0f, 0xfe, 0x0f, 0xfe, 0x0f,
|
|
0xfc, 0x07, 0xfc, 0x07, 0xf0, 0x01, 0x00, 0x00};
|