mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
10 lines
176 B
C++
10 lines
176 B
C++
#include "EffectAuraIdAttribute.h"
|
|
int EffectAuraIdAttribute::getAuraId(){
|
|
return this->auraid;
|
|
}
|
|
void EffectAuraIdAttribute::setAuraId(int value)
|
|
{
|
|
this->auraid = value;
|
|
}
|
|
|