AIsOfCatan.Board.Board C# (CSharp) Method

Board() private method

private Board ( Tile terrain, int>.Dictionary roads, Piece>.Dictionary settlements, int robber, Harbor harbors, Intersection inter, Edge edges ) : System
terrain AIsOfCatan.API.Tile
roads int>.Dictionary
settlements Piece>.Dictionary
robber int
harbors AIsOfCatan.API.Harbor
inter AIsOfCatan.API.Intersection
edges Edge
return System
        private Board(Tile[][] terrain, Dictionary<Edge, int> roads,
            Dictionary<Intersection, Piece> settlements, int robber,
            Harbor[] harbors, Intersection[] inter, Edge[] edges)
            : this()
        {
            this.allEdges = edges;
            this.allIntersections = inter;

            this.terrain = terrain;
            this.roads = roads;
            this.settlements = settlements;
            this.robberLocation = robber;
            this.harbors = harbors;
        }

Same methods

Board::Board ( ) : System
Board::Board ( int terrainSeed ) : System
Board::Board ( int terrainSeed, int numberSeed ) : System