#ifndef MAZE002_H
#define MAZE002_H

#include <gobj.h>


/*!
\brief Simple one path maze. 
*/
class maze002
{
public:

  /** Brief description of each test. */
  static string doc[];

  /** Global graphics stream. */
  gobjContainer xGraphics;

  /** Default keyboard handler - ESC to quit. */
  static void keyboard01(unsigned char key, int x, int y);
  /** Displays the gobj::global with double buffering. */
  static void display01();

  /** Maze options. */
  maze002(int argc, char** argv);

  /** Enter infinite graphics display. */
  void eval();

};


#endif


