10 lines
542 B
Plaintext
10 lines
542 B
Plaintext
#define chess_rook_width 24
|
|
#define chess_rook_height 24
|
|
static char chess_rook_bits[] = {
|
|
0x00, 0x3e, 0x00, 0x80, 0xff, 0x00, 0xc0, 0xff, 0x01, 0xa0, 0xff, 0x02,
|
|
0x20, 0x7f, 0x02, 0xe0, 0x80, 0x03, 0xe0, 0xff, 0x03, 0xe0, 0xff, 0x03,
|
|
0x80, 0xff, 0x00, 0x40, 0x3e, 0x01, 0xc0, 0xc1, 0x01, 0xc0, 0xff, 0x01,
|
|
0xc0, 0xf7, 0x01, 0xc0, 0xe3, 0x01, 0xc0, 0xf7, 0x01, 0xc0, 0xf7, 0x01,
|
|
0xc0, 0xf7, 0x01, 0x20, 0x3e, 0x02, 0xa0, 0x80, 0x02, 0x30, 0x7f, 0x04,
|
|
0x70, 0x00, 0x07, 0xe0, 0xff, 0x03, 0xc0, 0xff, 0x03, 0x00, 0x3e, 0x00};
|