Exemple #1
0
 /// <summary>
 /// Set a room for the monster to explore next.
 /// </summary>
 /// <param name="room">The room to explore next.</param>
 public void SetRoom(Navigation.Room room)
 {
     currentRoom = room;
     roomNodes   = nodeManager.CreateStack(nodeManager.ShuffleInterestNodes(currentRoom));
 }