Ok I've created the class Weapon below and I now want to create a vector of Weapons, how do I do this?
class Weapon
{
public:
Weapon();
// Methods
private:
// Data members.
std::string mWeaponName;
int mDamage;
float mCost;
};
#endif //WEAPON_H