Exemple #1
0
 public void Restart()
 {
     theMap = theFiler.GetMap(currentMap);
     SetTheseus(theFiler.GetTheseus());
     SetMinotaur(theFiler.GetMinotaur());
     Run();
 }
Exemple #2
0
        /*********************************************************************/

        /**** TEST STUFF ****/

        /*********************************************************************/

        public void SetTestMap(int testMap)
        {
            currentMap = testMap;
            theFiler   = new Filer();
            theFiler.InitTestCases();
            theMap = theFiler.GetTestMaps(testMap);
            SetTheseus(theFiler.GetTheseus());
            SetMinotaur(theFiler.GetMinotaur());
        }
Exemple #3
0
        /**** Import Map from Filer */

        public void SetMap(int aMap)
        {
            currentMap = aMap;
            theFiler   = new Filer();
            theFiler.Init();
            theMap = theFiler.GetMap(aMap);
            SetTheseus(theFiler.GetTheseus());
            SetMinotaur(theFiler.GetMinotaur());
        }
Exemple #4
0
 /*********************************************************************/
 /**** TEST STUFF ****/
 /*********************************************************************/
 public void SetTestMap(int testMap)
 {
     currentMap = testMap;
     theFiler = new Filer();
     theFiler.InitTestCases();
     theMap = theFiler.GetTestMaps(testMap);
     SetTheseus(theFiler.GetTheseus());
     SetMinotaur(theFiler.GetMinotaur());
 }
Exemple #5
0
 /**** Import Map from Filer */
 public void SetMap(int aMap)
 {
     currentMap = aMap;
     theFiler = new Filer();
     theFiler.Init();
     theMap = theFiler.GetMap(aMap);
     SetTheseus(theFiler.GetTheseus());
     SetMinotaur(theFiler.GetMinotaur());
 }