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

  1. #ifndef __options_h
  2. #define __options_h
  3.  
  4. #include <theatrix.h>
  5. #include "menu.h"
  6.  
  7. class OptionsScreen : public VideoDirector
  8. {
  9.   public:
  10.     OptionsScreen() {}
  11.     ~OptionsScreen();
  12.     void initialize();
  13.     void display();
  14.     void onQuit(int);
  15.     const Type_info& get_next_director()  { return typeid(Menu); }
  16. //    int get_director_id()      { return idOPTIONS; }
  17. //    int get_next_director_id() { return idMENU; }
  18. };
  19.  
  20. #endif //__options_h
  21.