mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01: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;
|
||
|
}
|
||
|
|