Files
42_SIDE_exam_05_cpp/cpp_module_01/ATarget.cpp
2022-12-12 22:34:11 +01:00

8 lines
160 B
C++

#include "ATarget.hpp"
void ATarget::getHitBySpell(ASpell const & aspell) const
{
std::cout << this->type << " has been " << aspell.getEffects() << "!\n";
}