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

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