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

  1. #ifndef HELP_H
  2. #define HELP_H
  3.  
  4. #include "game.h"
  5.  
  6. class Help : public VideoDirector
  7.   {
  8. public:
  9.   Help();
  10.  ~Help();
  11.   void display();
  12.   void take_over();
  13.   int get_director_id()      { return HELP_ID; }
  14.   int get_next_director_id() { return MENU_ID; }
  15.   };
  16.  
  17.  
  18. #endif
  19.  
  20.