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

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