#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