public override string ToString()
 {
     return
         (this.npc.Name + this.npc.Dialogue +
          "**********\n" + this.Label + "\n**********\n"
          + "Exits found :: " + exitCollection.AvailableExits()
          + "\n" + items.ToString()
          + "\n**********\n" + this.Description + "\n**********\n");
 }
Ejemplo n.º 2
0
 public override string ToString()
 {
     return(inventory.ToString());
 }