Ejemplo n.º 1
0
    /**
     * Randomise the resource types for each tile in the grid.
     */
    public void CreateTiles()
    {
        List <Face> faces = boardGrid.GetFacesAsList();

        for (int i = 0; i < faces.Count; i++)
        {
            faces[i].tile = new Tile();
        }
    }