/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* PlasmaRifle.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/14 13:07:24 by charles #+# #+# */ /* Updated: 2020/04/14 13:18:53 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #include "PlasmaRifle.hpp" PlasmaRifle::PlasmaRifle() : AWeapon("Plasma Rifle", 5, 21) { } PlasmaRifle::PlasmaRifle(PlasmaRifle const& other) { *this = other; } void PlasmaRifle::operator=(PlasmaRifle const& other) { AWeapon::operator=(other); } PlasmaRifle::~PlasmaRifle() { } void PlasmaRifle::attack() const { std::cout << "* piouuu piouuu piouuu *" << std::endl; }