// DrJava saved history v2 Maze m = MazeGenerator2.makeComplexMaze();//End of Interaction// Warrior w1 = new Warrior("Harry", "Wealthierland", m.getRoomAt(2,1), 10);//End of Interaction// Warrior w2 = new Warrior("Ron", "Richerland", m.getRoomAt(3, 1), 9);//End of Interaction// Guard g1 = new Guard("Hagrid", m.getRoomAt(3, 1), Direction.EAST, 9);//End of Interaction// w1.fight(w2)//End of Interaction// w1.move(Direction.SOUTH);//End of Interaction// w1.fight(w2)//End of Interaction// w2//End of Interaction// w1.move(Direction.EAST)//End of Interaction// w1.fight(g1)//End of Interaction// w1.move(Direction.EAST)//End of Interaction// w2.fight(g1)//End of Interaction// w2.move(Direction.EAST)//End of Interaction// w1.move(Direction.WEST);//End of Interaction// w1.move(Direction.EAST)//End of Interaction//