home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / thx / demos / mfighter / build / main.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-11  |  258 b   |  18 lines

  1. #include "theatrix.h"
  2.  
  3.  
  4. class MarbleFighter : public Theatrix
  5.   {
  6. public:
  7.   MarbleFighter();
  8.   ~MarbleFighter();
  9.   void use_network();
  10.   void use_side(int);
  11. private:
  12.   IntroPage* intro;
  13.   HelpPage* help;
  14.   Match* match;
  15.   Menu* menu; 
  16.   };
  17.  
  18.