home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / demos / mfighter / build / pages.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-14  |  582 b   |  24 lines

  1. #ifndef PAGES_H
  2. #define PAGES_H
  3. //---------------------------------------------------------------
  4.  
  5. #include <theatrix.h>
  6. #include "menu.h"
  7.  
  8. class IntroPage : public SceneryDirector
  9.   {
  10. public:
  11.   IntroPage() : SceneryDirector("intro.pcx")  { }
  12.   const Type_info& get_next_director()  { return typeid(Menu); }
  13.   };
  14.  
  15. class HelpPage : public SceneryDirector
  16.   {
  17. public:
  18.   HelpPage() : SceneryDirector("help.pcx")   { }
  19.   const Type_info& get_next_director()  { return typeid(Menu); }
  20.   };
  21.  
  22. //---------------------------------------------------------------
  23. #endif
  24.