10 lines
545 B
Plaintext
10 lines
545 B
Plaintext
#define chess_queen_width 24
|
|
#define chess_queen_height 24
|
|
static char chess_queen_bits[] = {
|
|
0x00, 0x1c, 0x00, 0x40, 0x22, 0x01, 0xc0, 0xd5, 0x01, 0x80, 0xb6, 0x00,
|
|
0x80, 0xb6, 0x00, 0x00, 0x77, 0x00, 0x80, 0xa2, 0x00, 0x00, 0x41, 0x00,
|
|
0x00, 0x7f, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00,
|
|
0x00, 0x3e, 0x00, 0x00, 0x3e, 0x00, 0x00, 0x7f, 0x00, 0x00, 0x7f, 0x00,
|
|
0x00, 0x3e, 0x00, 0x80, 0xdd, 0x00, 0x80, 0xe3, 0x00, 0x00, 0x7f, 0x00,
|
|
0xc0, 0xbe, 0x01, 0xc0, 0xc1, 0x01, 0x80, 0xff, 0x00, 0x00, 0x3e, 0x00};
|