home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 March / ENTER.ISO / files / fwp-0.0.6-win32-installer.exe / RocketlauncherShot.h < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-24  |  510 b   |  26 lines

  1. #ifndef __RocketlauncherShot_h__
  2. #define __RocketlauncherShot_h__
  3.  
  4. #include "Shot.h"
  5.  
  6.  
  7. class RocketlauncherShot: public Shot{
  8. public:
  9.     Model* model;
  10.     unsigned long nextSmokePuffMillis;
  11.  
  12.     RocketlauncherShot(int clientId, int weaponId);
  13.     ~RocketlauncherShot();
  14.  
  15.     void leaveMuzzle();
  16.     void move(float deltaT);
  17.     void hitFace(Face* face, vec3_t hp);
  18.     void hitVehicle(Vehicle* vehicle, vec3_t hp);
  19.     void doSplashDamage(vec3_t hp);
  20.  
  21.     void render();
  22.  
  23. };
  24.  
  25. #endif    /* __RocketlauncherShot_h__ */
  26.