• R/O
  • SSH
  • HTTPS

shoginextmove: コミット


コミットメタ情報

リビジョン70 (tree)
日時2016-02-21 17:46:19
作者bellyoshi

ログメッセージ

変更サマリ

差分

--- Quantum/QuantumShogi/QuantumShogi.Logic/Board.cs (revision 69)
+++ Quantum/QuantumShogi/QuantumShogi.Logic/Board.cs (revision 70)
@@ -21,7 +21,23 @@
2121 public Board()
2222 {
2323 _cells = new Piece[SIZE_OF_X * SIZE_OF_Y];
24-
24+
25+ //9 壁
26+ //1 量子
27+ //0 空
28+ int[][] initialArrangement = {
29+ new int[] {9,9,9,9,9,9,9,9,9,9,9},
30+ new int[] {9,1,1,1,1,1,1,1,1,1,9},
31+ new int[] {9,0,1,0,0,0,0,0,1,0,9},
32+ new int[] {9,1,1,1,1,1,1,1,1,1,9},
33+ new int[] {9,0,0,0,0,0,0,0,0,0,9},
34+ new int[] {9,0,0,0,0,0,0,0,0,0,9},
35+ new int[] {9,0,0,0,0,0,0,0,0,0,9},
36+ new int[] {9,1,1,1,1,1,1,1,1,1,9},
37+ new int[] {9,0,1,0,0,0,0,0,1,0,9},
38+ new int[] {9,1,1,1,1,1,1,1,1,1,9},
39+ new int[] {9,9,9,9,9,9,9,9,9,9,9}
40+ };
2541 }
2642
2743 }
旧リポジトリブラウザで表示