home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / XenonSource.exe / demo4 / rusher.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-12  |  718 b   |  38 lines

  1. //-------------------------------------------------------------
  2. //
  3. // Class:    CRusher
  4. //
  5. // Author:    John M Phillips
  6. //
  7. // Started:    06/05/00
  8. //
  9. // Base:    CAlien
  10. //
  11. // Derived:    None
  12. //
  13. //-------------------------------------------------------------
  14.  
  15. #ifndef _INCLUDE_RUSHER_H
  16. #define _INCLUDE_RUSHER_H
  17.  
  18. #include "alien.h"
  19.  
  20. //-------------------------------------------------------------
  21.  
  22. class CRusher : public CAlien
  23. {
  24.     public:
  25.         CRusher();
  26.         virtual ~CRusher();
  27.  
  28.         const ActorInfo& getActorInfo() { return ActorInfoList[INFO_RUSHER]; };
  29.  
  30.         bool activate();
  31.         void kill();
  32.         bool update(Controls *controls);
  33. };
  34.  
  35. //-------------------------------------------------------------
  36.  
  37. #endif
  38.