Develop and Download Open Source Software

Browse Subversion Repository

Contents of /Quantum/QuantumShogi/QuantumShogi.Logic/PieceNumbersOfSide.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 82 - (show annotations) (download)
Thu Feb 25 07:13:43 2016 UTC (8 years ago) by bellyoshi
File size: 511 byte(s)

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 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26