home *** CD-ROM | disk | FTP | other *** search
- #ifndef __options_h
- #define __options_h
-
- #include <theatrix.h>
- #include "menu.h"
-
- class OptionsScreen : public VideoDirector
- {
- public:
- OptionsScreen() {}
- ~OptionsScreen();
- void initialize();
- void display();
- void onQuit(int);
- const Type_info& get_next_director() { return typeid(Menu); }
- // int get_director_id() { return idOPTIONS; }
- // int get_next_director_id() { return idMENU; }
- };
-
- #endif //__options_h
-