#ifndef RANGEDWEAPON_HPP #define RANGEDWEAPON_HPP #include class RangedWeapon : public Weapon { protected: bool _charged; unsigned _range; }; #endif