mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-04-23 21:43:24 +02:00
10 lines
148 B
C++
10 lines
148 B
C++
#include "EffectIdAttribute.h"
|
|
int EffectIdAttribute::getId(){
|
|
return this->id;
|
|
}
|
|
void EffectIdAttribute::setId(int value)
|
|
{
|
|
this->id = value;
|
|
}
|
|
|