Example #1
0
 public AdventureLogic()
 {
     persister   = new Persister();
     this.hero   = persister.LoadSavedHero();
     mainDeck    = new AdventureStack();
     potionLogic = new PotionLogic();
 }
Example #2
0
 public PasserbyLogic(AdventureStack adventureStack)
 {
     stack = adventureStack;
 }