Tentative MiniShogi implementation over move generator.
[tagua/yd.git] / src / variants / minishogi / global.h
blobdfed3e6615ba1b3da6c8271a8cfa3aa606428242
1 /*
2 Copyright (c) 2007 Paolo Capriotti <p.capriotti@gmail.com>
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
8 */
10 #include <core/type.h>
11 #include <core/color.h>
13 namespace MiniShogi {
15 extern const IType* pawn;
16 extern const IType* king;
17 extern const IType* gold;
18 extern const IType* silver;
19 extern const IType* bishop;
20 extern const IType* rook;
21 extern const IColor* players[];