home *** CD-ROM | disk | FTP | other *** search
- #ifndef __LaserShot_h__
- #define __LaserShot_h__
-
- #include "Shot.h"
-
- class LaserShot: public Shot{
- public:
-
- Model* model;
-
- LaserShot(int clientId, int weaponId);
- ~LaserShot();
-
- void leaveMuzzle();
- // void move(float deltaT);
- void hitFace(Face* face, vec3_t hp);
- void hitVehicle(Vehicle* vehicle, vec3_t hp);
-
- void render();
-
- };
-
- #endif /* __LaserShot_h__ */
-