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

  1. #ifndef __Railgun_h__
  2. #define __Railgun_h__
  3.  
  4. #include "Weapon.h"
  5.  
  6. class Railgun: public Weapon{
  7. public:
  8.     Railgun(Vehicle* vehicle, vec3_t mountPoint);
  9.  
  10.     void fire();
  11. };
  12.  
  13. #endif    /* __Railgun_h__ */
  14.