home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / XenonSource.exe / xenon / includes / boss.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-07-23  |  886 b   |  50 lines

  1. //-------------------------------------------------------------
  2. //
  3. // Class:    CBoss
  4. //
  5. // Author:    John M Phillips
  6. //
  7. // Started:    06/05/00
  8. //
  9. // Base:    CActor
  10. //
  11. // Derived:    CBossEye
  12. //            CBossMouth
  13. //            CBossControl
  14. //
  15. //-------------------------------------------------------------
  16.  
  17. #ifndef _INCLUDE_BOSS_H
  18. #define _INCLUDE_BOSS_H
  19.  
  20. #include "actor.h"
  21.  
  22. //-------------------------------------------------------------
  23.  
  24. const int BOSS_EYES_TOTAL = 6;
  25.  
  26. //-------------------------------------------------------------
  27.  
  28. class CBossMouth;
  29.  
  30. //-------------------------------------------------------------
  31.  
  32. class CBoss : public CActor
  33. {
  34.     protected:
  35.         static int m_active_eyes;
  36.  
  37.         static CBossMouth *m_mouth;
  38.         
  39.     public:
  40.         CBoss();
  41.         ~CBoss();
  42.  
  43.         static int getShield();
  44. };
  45.  
  46. //-------------------------------------------------------------
  47.  
  48. #endif
  49.  
  50.