10 lines
548 B
Plaintext
10 lines
548 B
Plaintext
#define chess_knight_width 24
|
|
#define chess_knight_height 24
|
|
static char chess_knight_bits[] = {
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00,
|
|
0x00, 0xf4, 0x03, 0x00, 0x97, 0x07, 0x00, 0x7f, 0x06, 0xc0, 0xff, 0x06,
|
|
0xc0, 0xdf, 0x0e, 0xe0, 0xdf, 0x0d, 0xf0, 0xe3, 0x0d, 0xe0, 0xfd, 0x0d,
|
|
0x40, 0xfc, 0x0d, 0x00, 0xfe, 0x0e, 0x00, 0xff, 0x06, 0x80, 0xff, 0x03,
|
|
0x80, 0xff, 0x03, 0xc0, 0x7e, 0x03, 0xc0, 0xbd, 0x01, 0xe0, 0xc3, 0x03,
|
|
0xe0, 0xff, 0x03, 0xc0, 0xff, 0x01, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00};
|