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

  1. //-------------------------------------------------------------
  2. //
  3. // Class:    CShipEngine
  4. //
  5. // Author:    John M Phillips
  6. //
  7. // Started:    06/05/00
  8. //
  9. // Base:    CEngine
  10. //
  11. // Derived:    None
  12. //
  13. //-------------------------------------------------------------
  14.  
  15. #ifndef _INCLUDE_SHIPENGINE_H
  16. #define _INCLUDE_SHIPENGINE_H
  17.  
  18. #include "engine.h"
  19.  
  20. //-------------------------------------------------------------
  21.  
  22. class CShipEngine : public CEngine
  23. {
  24.     public:
  25.         CShipEngine();
  26.         virtual ~CShipEngine();
  27.  
  28.         const ActorInfo& getActorInfo() { return ActorInfoList[INFO_SHIP_ENGINE]; };
  29.  
  30.         bool draw();
  31. };
  32.  
  33. //-------------------------------------------------------------
  34.  
  35. #endif
  36.