Esempio n. 1
0
 protected virtual bool RemoveExit(RoomLink exit)
 {
     if (exits.Remove(exit))
     {
         this.Save();
         return(true);
     }
     return(false);
 }
Esempio n. 2
0
 protected virtual void AddExit(RoomLink exit)
 {
     exits.Add(exit);
     this.Save();
 }