entity_spell_system/Queued/BSScripts/EffectIdAttribute.cpp
2019-04-20 14:02:55 +02:00

10 lines
148 B
C++

#include "EffectIdAttribute.h"
int EffectIdAttribute::getId(){
return this->id;
}
void EffectIdAttribute::setId(int value)
{
this->id = value;
}