/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* main.cpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rparodi +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/01/10 15:50:07 by rparodi #+# #+# */ /* Updated: 2025/01/10 15:57:10 by rparodi ### ########.fr */ /* */ /* ************************************************************************** */ #include "ClapTrap.hpp" int main(void) { ClapTrap test("Norminet"); test.attack("Moulinette"); test.takeDamage(42); test.beRepaired(42); return (0); }