Uses of Class
net.mazewar.Maze

Packages that use Maze
net.mazewar   
 

Uses of Maze in net.mazewar
 

Subclasses of Maze in net.mazewar
 class MazeImpl
          A concrete implementation of a Maze.
 

Fields in net.mazewar declared as Maze
 Maze Mazewar.maze
          The Maze that the game uses.
 

Methods in net.mazewar that return Maze
static Maze MazeImpl.readMazeFile(java.lang.String mazefile)
          Create a maze from a serialized MazeImpl object written to a file.
 

Methods in net.mazewar with parameters of type Maze
 void RobotClient.registerMaze(Maze maze)
          Override the abstract Client's registerMaze method so that we know when to start control thread.
 void Client.registerMaze(Maze maze)
          Register this Client as being contained by the specified Maze.
 

Constructors in net.mazewar with parameters of type Maze
OverheadMazePanel(Maze maze, Client client)
          Create a Panel that will display an overhead view of a Maze from a specified Client's viewpoint.