Example #1
0
 public void Restart()
 {
     theMap = theFiler.GetMap(currentMap);
     SetTheseus(theFiler.GetTheseus());
     SetMinotaur(theFiler.GetMinotaur());
     Run();
 }
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
 /**** 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());
 }