Example #1
0
 public Chapter19Start()
     : base("a road leading to the Town Square", "You can go here.", "town square",
         "road leading to the town square", "a road leading to the town square")
 {
     Items.Add(new Roadsign());
     var tmp = new Harbor(this);
     Exits.Add(new InnRoad(this, tmp));
     Exits.Add(tmp);
 }
Example #2
0
 public InnRoad(Chapter19Start prev, Harbor harbor)
     : base("an inn", "You can go here.", "inn", "an inn")
 {
     Exits.Add(prev);
 }
Example #3
0
 public Ship(Harbor prev)
     : base("a single, solitary ship in the docks", "You can go here.", "ship", "solitary ship")
 {
     Exits.Add(prev);
 }