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

  1. #ifndef __help_h
  2. #define __help_h
  3.  
  4. #include "menu.h"
  5.  
  6. class HelpScreen : public SceneryDirector
  7. {
  8.   public:
  9.   HelpScreen() : SceneryDirector("help.pcx")   { }
  10.   const Type_info& get_next_director()  { return typeid(Menu); }
  11. };
  12.  
  13. #endif //__help_h
  14.