mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
35 lines
593 B
C++
35 lines
593 B
C++
#include "MobSpellDataEntry.h"
|
|
|
|
MobSpellDataType MobSpellDataEntry::getType(){
|
|
return this->type;
|
|
}
|
|
|
|
int MobSpellDataEntry::getSpellId()
|
|
{
|
|
return this->spellId;
|
|
}
|
|
|
|
int MobSpellDataEntry::getPriority()
|
|
{
|
|
return this->priority;
|
|
}
|
|
|
|
bool MobSpellDataEntry::getMoveWhileCasting()
|
|
{
|
|
return this->moveWhileCasting;
|
|
}
|
|
|
|
MobSpellDataEntry::MobSpellDataEntry()
|
|
{
|
|
}
|
|
|
|
MobSpellDataEntry::MobSpellDataEntry(MobSpellDataType type, int spellId, int priority, bool moveWhileCasting)
|
|
{
|
|
this->type = type;
|
|
this->spellId = spellId;
|
|
this->priority = priority;
|
|
this->moveWhileCasting = moveWhileCasting;
|
|
}
|
|
|
|
|