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

  1. #include <theatrix.h>
  2.  
  3.  
  4. class Fighter;
  5.  
  6. class LifeBar : public Performer
  7.   {
  8. public:
  9.   LifeBar(Director*,Fighter*,int);
  10.   void initialize();
  11.   void display();
  12. protected:
  13.   DECLARE_CUELIST
  14. private:
  15.   void update(int damage);
  16.   void on_hit(int msg,int data);
  17. private:
  18.   Fighter* fighter;
  19.   int color;
  20.   int side;
  21.   int imageno;
  22.   int x;
  23.   };
  24.