Uses of Class
mstar.Exit

Uses of Exit in mstar
 

Subclasses of Exit in mstar
 class PathComponent
          The PathComponent is used as part of the path finding routines in the MUD map.
 

Methods in mstar that return Exit
 Exit Room.getNextUnvisitedExit()
          Deprecated.  
 Exit Room.getExit(int e)
          This routine returns an exit that points to a specific room.
 Exit[] Room.getGoodExits()
          This routine returns the good exits that are currently known for this room.
 Exit[] Room.getBadExits()
          This routine returns the bad exits that are currently known for this room.
 Exit[] Room.getSuspectExits()
          This routine returns the suspect exits that are currently known for this room.
 

Methods in mstar with parameters of type Exit
 boolean Exit.equal(Exit e)
          This routine determines if this exit is equal to another exit.
 void Room.addGoodExit(Exit e)
          This routine adds an exit to the good exit list.
 void Room.addBadExit(Exit e)
          This routine adds an exit to the bad exit list.
 void Room.addSuspectExit(Exit e)
           
 void Room.removeGoodExit(Exit e)
          This routine removes an exit from the good exits list.
 void Room.removeBadExit(Exit e)
          This routine removes an exit from the bad exits list.
 void Room.moveGoodExitToSuspectExit(Exit e)