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 queen_small_outline_width 32
- #define queen_small_outline_height 32
- static short queen_small_outline_bits[] = {
- 0x0000, 0x0000, 0x0000, 0x0000,
- 0x8000, 0x0000, 0x8000, 0x0000,
- 0x8080, 0x0080, 0x8080, 0x0080,
- 0x8180, 0x00c0, 0x8180, 0x00c0,
- 0xc100, 0x0041, 0x4100, 0x0041,
- 0x4302, 0x2061, 0x4306, 0x3061,
- 0x4304, 0x1061, 0x430c, 0x1861,
- 0x4708, 0x0871, 0x4618, 0x0c31,
- 0x4638, 0x0e31, 0x4e30, 0x0639,
- 0x4e70, 0x0729, 0x6a60, 0x032b,
- 0x2ae0, 0x03ab, 0x3be0, 0x03ee,
- 0x0040, 0x0100, 0x00c0, 0x0180,
- 0xfc80, 0x009f, 0x0180, 0x00c0,
- 0x0100, 0x0040, 0xfd80, 0x00df,
- 0x00f0, 0x0780, 0xfff0, 0x07ff,
- 0x0000, 0x0000, 0x0000, 0x0000};
|