home *** CD-ROM | disk | FTP | other *** search
- // -------- help.h
-
- #ifndef HELP_H
- #define HELP_H
-
- #include "menu.h"
- #include "theatrix.h"
-
-
- class Help : public SceneDirector {
- const Type_info& get_next_director()
- { return typeid(Menu); }
- public:
- Help() : SceneDirector("help.pcx", NoTransition)
- { }
- };
-
- #endif
-