This commit is contained in:
Camille Chauvet 2023-07-31 15:28:10 +02:00
parent 42a06c46cd
commit 7a10311d56
2 changed files with 0 additions and 2 deletions

View File

@ -7,7 +7,6 @@ class HumanA
{ {
public: public:
HumanA(const std::string& name, const Weapon& weapon); HumanA(const std::string& name, const Weapon& weapon);
HumanA(const HumanA& src);
~HumanA(); ~HumanA();
void attack(); void attack();

View File

@ -7,7 +7,6 @@ class HumanB
{ {
public: public:
HumanB(const std::string& name); HumanB(const std::string& name);
HumanB(const HumanB& src);
~HumanB(); ~HumanB();
void attack(); void attack();