25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

33 satır
500 B

#include <cstring>
#include "Spell.hpp"
Spell::Spell(const char *spellName,
const int spellType,
int spellPower,
int spellCost) : type(spellType), name("")
{
this->power = spellPower;
this->cost = spellCost;
strcpy(this->name, spellName);
}
int Spell::getType()
{
return this->type;
}
int Spell::getPower()
{
return this->power;
}
int Spell::getCost()
{
return this->cost;
}
const char *Spell::getName()
{
return this->name;
}