home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / demos / shootout / build / help.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-05  |  287 b   |  19 lines

  1. // -------- help.h
  2.  
  3. #ifndef HELP_H
  4. #define HELP_H
  5.  
  6. #include "menu.h"
  7. #include "theatrix.h"
  8.  
  9.  
  10. class Help : public SceneDirector    {
  11.     const Type_info& get_next_director()
  12.         { return typeid(Menu); }
  13. public:
  14.     Help() : SceneDirector("help.pcx", NoTransition)
  15.         { }
  16. };
  17.  
  18. #endif
  19.