home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / demos / shootout / build / menu.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-05  |  282 b   |  22 lines

  1. // --------- menu.h
  2.  
  3. #ifndef MENU_H
  4. #define MENU_H
  5.  
  6. #include "theatrix.h"
  7. #include "pointer.h"
  8.  
  9. class Menu : public SceneDirector    {
  10.     void on_enter();
  11.     void on_escape();
  12.     void display();
  13.     DECLARE_CUELIST
  14. public:
  15.     Menu();
  16.     ~Menu();
  17.     Pointer *pointer;
  18. };
  19.  
  20. #endif
  21.  
  22.