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