コード例 #1
0
ファイル: Logic.cs プロジェクト: cyecp/DeltaEngine.OpenTK
 protected Logic(int width, int height, Vector2D[] homeSquares)
 {
     Board                = new Board(width, height);
     this.homeSquares     = homeSquares;
     availableColorFinder = new AvailableColorFinder(Board, homeSquares);
     turns                = new int[homeSquares.Length];
 }
コード例 #2
0
ファイル: Logic.cs プロジェクト: cyecp/DeltaEngine.OpenTK
 protected Logic(Board.Data boardData, Vector2D[] homeSquares)
 {
     Board                = new Board(boardData);
     this.homeSquares     = homeSquares;
     availableColorFinder = new AvailableColorFinder(Board, homeSquares);
     turns                = new int[homeSquares.Length];
 }