/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* PowerFist.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/14 13:15:42 by charles #+# #+# */ /* Updated: 2020/04/14 14:09:51 by charles ### ########.fr */ /* */ /* ************************************************************************** */ #include "PowerFist.hpp" PowerFist::PowerFist() : AWeapon("Power Fist", 8, 50) { } PowerFist::PowerFist(PowerFist const& other) { *this = other; } void PowerFist::operator=(PowerFist const& other) { AWeapon::operator=(other); } PowerFist::~PowerFist() { } void PowerFist::attack() const { std::cout << "* pschhh... SBAM! *" << std::endl; }