entity_spell_system/Queued/BSScripts/EffectIdAttribute.cpp

10 lines
148 B
C++
Raw Normal View History

2019-04-20 14:02:55 +02:00
#include "EffectIdAttribute.h"
int EffectIdAttribute::getId(){
return this->id;
}
void EffectIdAttribute::setId(int value)
{
this->id = value;
}