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

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