Example #1
0
 public Harbor(Chapter19Start prev)
     : base("the town's harbor", "You can go here.", "harbor", "the town's harbor", "town's harbor",
         "the towns harbor", "towns harbor")
 {
     Exits.Add(prev);
     Exits.Add(new Ship(this));
 }
Example #2
0
 public InnRoad(Chapter19Start prev, Harbor harbor)
     : base("an inn", "You can go here.", "inn", "an inn")
 {
     Exits.Add(prev);
 }