12345678910111213141516171819202122232425262728293031323334353637383940 |
- /* This file contains code for X-CHESS.
- Copyright (C) 1986 Free Software Foundation, Inc.
- This file is part of X-CHESS.
- X-CHESS is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY. No author or distributor
- accepts responsibility to anyone for the consequences of using it
- or for whether it serves any particular purpose or works at all,
- unless he says so in writing. Refer to the X-CHESS General Public
- License for full details.
- Everyone is granted permission to copy, modify and redistribute
- X-CHESS, but only under the conditions described in the
- X-CHESS General Public License. A copy of this license is
- supposed to have been given to you along with X-CHESS so you
- can know your rights and responsibilities. It should be in a
- file named COPYING. Among other things, the copyright notice
- and this notice must be preserved on all copies. */
- #define knight_small_outline_width 32
- #define knight_small_outline_height 32
- static short knight_small_outline_bits[] = {
- 0x0000, 0x0000, 0x0600, 0x0080,
- 0xee00, 0x027f, 0x3a00, 0x0140,
- 0x0300, 0x04c0, 0x0100, 0x0280,
- 0x0180, 0x0980, 0x0cc0, 0x0700,
- 0x0c60, 0x1100, 0x0020, 0x0d00,
- 0x0020, 0x0300, 0x0030, 0x3e00,
- 0x0010, 0x0200, 0x0010, 0x7e00,
- 0x7c18, 0x0400, 0x470c, 0x7c00,
- 0x4106, 0x0400, 0x41f2, 0x7c00,
- 0x40de, 0x0400, 0x406c, 0x7c00,
- 0x6028, 0x0400, 0x2000, 0x7c00,
- 0x2000, 0x0800, 0x3000, 0x7800,
- 0x1000, 0x0800, 0x1000, 0x7800,
- 0x1800, 0x0800, 0x0800, 0x7800,
- 0x0c00, 0x0800, 0xff00, 0x7fff,
- 0x0000, 0x0000, 0x0000, 0x0000};
|