ClapTrap default constructor message fixed

This commit is contained in:
Angel Ortigosa Perez
2025-10-26 20:41:43 +01:00
parent 6ca0fefbe2
commit e2d31422b9

View File

@@ -16,8 +16,8 @@ ClapTrap::ClapTrap() :
name("(NULL)"), health(10), name("(NULL)"), health(10),
energy(10), attackDamage(0) energy(10), attackDamage(0)
{ {
std::cout << "ClapTrap default constructor called " << this->name std::cout << "ClapTrap default constructor called " << this->name
<< std::endl; << std::endl;
} }