Example #1
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());
        }
Example #2
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());
        }
Example #3
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());
 }
Example #4
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());
 }