void Start()
    {
        var matrix = new int[height, width];

        clusteringMaze = new ClusteringMaze(1);
        clusteringMaze.Draw(matrix);
        new OutputConsole().Draw(matrix);
    }
Example #2
0
    void Start()
    {
        var            matrix         = new int[height, width];
        ClusteringMaze clusteringMaze = new ClusteringMaze(1);

        clusteringMaze.Draw(matrix);
        InstantiateMaze(matrix);
    }