Ejemplo n.º 1
0
        public Grid()
        {
            Cells = new Cell[120, 160];
            hardToTraverseCenters = new Vector2[8];
            StartGoalPairs        = new StartGoalPair[10];

            gridBackgroundRect = new Rectangle(31, 31, 961, 721);
            startGoalPairIndex = 0;

            AlgorithmResults = new Algorithms.DataStructures.AlgorithmResults();
        }
 public AlgorithmResultsDataObject(Algorithms.DataStructures.AlgorithmResults algorithmResults, string algorithmTitle)
 {
     this.AlgorithmResults = algorithmResults;
     this.AlgorithmTitle   = algorithmTitle;
 }