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