home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / XenonSource.exe / demo4 / alien.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-11  |  468 b   |  25 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. #include "demo4.h"
  16.  
  17. //-------------------------------------------------------------
  18.  
  19. void CAlien::onLeavingScreen()
  20. {
  21.     kill();
  22. }
  23.  
  24. //-------------------------------------------------------------
  25.