12345678910111213141516171819 |
- #ifndef BASICSHOTGUN_H
- #define BASICSHOTGUN_H
- #include "../Arme.h"
- class Shotgun : public Arme
- {
- public:
- Shotgun( Tirs_Gest* tirsGest );
- virtual ~Shotgun();
- virtual void tirer(Vec pos, Vec visee, bool allie);
- protected:
- };
- #endif // BASICSHOTGUN_H
|