Browse Subversion Repository
Contents of /Quantum/QuantumShogi/QuantumShogi.Logic/PieceNumbersOfSide.cs
Parent Directory
| Revision Log
| 1 |
using System; |
| 2 |
using System.Collections.Generic; |
| 3 |
using System.Linq; |
| 4 |
using System.Text; |
| 5 |
|
| 6 |
namespace QuantumShogi.Logic |
| 7 |
{ |
| 8 |
public class PieceNumbersOfSide |
| 9 |
{ |
| 10 |
Piece[] pieces; |
| 11 |
Piece[][] piecesOfDirection; |
| 12 |
int[] maxOfpieceDirection; |
| 13 |
public int[] maxOfpieceType { get; } |
| 14 |
public PieceNumbersOfSide() |
| 15 |
{ |
| 16 |
//歩,香,桂,銀,金,角,飛,玉の枚数を設定 |
| 17 |
maxOfpieceType = new int[] { 9,2,2,2,2,1,1,1}; |
| 18 |
} |
| 19 |
} |
| 20 |
} |
| |