pandemonium_engine/modules/entity_spell_system/data/auras/aura_group.h

18 lines
222 B
C++
Raw Normal View History

2022-03-17 22:33:22 +01:00
#ifndef AURA_GROUP_H
#define AURA_GROUP_H
#include "core/object/resource.h"
class AuraGroup : public Resource {
GDCLASS(AuraGroup, Resource);
public:
AuraGroup();
protected:
static void _bind_methods();
};
#endif