mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-24 17:24:57 +01:00
20 lines
382 B
C
20 lines
382 B
C
|
#ifndef AURA_APPLY_DATA_H
|
||
|
#define AURA_APPLY_DATA_H
|
||
|
|
||
|
#include "AuraGroup.h"
|
||
|
|
||
|
class AuraApplyData : public virtual Object{
|
||
|
private:
|
||
|
List_T<AuraGroup>* auraGroups;
|
||
|
|
||
|
public:
|
||
|
String* SerializationName;
|
||
|
List_T<AuraGroup>* getAuraGroups();
|
||
|
void setAuraGroups(List_T<AuraGroup>* value);
|
||
|
void FromJSON(JsonReader* r);
|
||
|
void ToJSON(JsonWriter* w);
|
||
|
AuraApplyData();
|
||
|
};
|
||
|
|
||
|
#endif
|