ICSAPI::parseVerbose is now used instead of VariantInfo::getVerboseMove.
[tagua/yd.git] / src / variants / xchess / piecetype.h
blobad011affd48f7b66c5d68c7b0f1bf5bf852eb268
1 /*
2 Copyright (c) 2006 Paolo Capriotti <p.capriotti@sns.it>
3 (c) 2006 Maurizio Monge <maurizio.monge@kdemail.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9 */
11 #ifndef PIECETYPE_H
12 #define PIECETYPE_H
14 enum PieceColor {
15 INVALID_COLOR = -1,
16 WHITE = 0,
17 BLACK = 1
20 enum PieceType {
21 INVALID_TYPE = -1,
22 PAWN,
23 KNIGHT,
24 BISHOP,
25 ROOK,
26 QUEEN,
27 KING
30 #endif // PIECETYPE_H