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

  1. //-------------------------------------------------------------
  2. //
  3. // Class:    CAlien
  4. //
  5. // Author:    John M Phillips
  6. //
  7. // Started:    06/05/00
  8. //
  9. // Base:    CActor
  10. //
  11. // Derived:    CAsteroid
  12. //
  13. //-------------------------------------------------------------
  14.  
  15. #ifndef _INCLUDE_ALIEN_H
  16. #define _INCLUDE_ALIEN_H
  17.  
  18. #include "actor.h"
  19. #include "weapon.h"
  20.  
  21. //-------------------------------------------------------------
  22.  
  23. class CAlien : public CActor
  24. {
  25.     public:
  26.         void onLeavingScreen();
  27. };
  28.  
  29. //-------------------------------------------------------------
  30.  
  31. #endif
  32.  
  33.