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