entity_spell_system/Queued/BSScripts/EffectAuraIdAttribute.cpp

10 lines
176 B
C++
Raw Normal View History

2019-04-20 14:02:55 +02:00
#include "EffectAuraIdAttribute.h"
int EffectAuraIdAttribute::getAuraId(){
return this->auraid;
}
void EffectAuraIdAttribute::setAuraId(int value)
{
this->auraid = value;
}