Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

42 linhas
664 B

#include "Spell.hpp"
int Spell::TYPE_RESTORATION = 1;
int Spell::TYPE_DESTRUCTION = 2;
Spell::Spell(std::string spellName,
Element *spellElement,
int spellType,
int spellPower,
int spellCost)
{
this->name = spellName;
this->element = spellElement;
this->type = spellType;
this->power = spellPower;
this->cost = spellCost;
}
int Spell::getType()
{
return this->type;
}
int Spell::getPower()
{
return this->power;
}
int Spell::getCost()
{
return this->cost;
}
Element *Spell::getElement()
{
return this->element;
}
std::string Spell::getName()
{
return this->name;
}