mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
17 lines
214 B
C++
17 lines
214 B
C++
#ifndef AURA_GROUP_H
|
|
#define AURA_GROUP_H
|
|
|
|
#include "core/resource.h"
|
|
|
|
class AuraGroup : public Resource {
|
|
GDCLASS(AuraGroup, Resource);
|
|
|
|
public:
|
|
AuraGroup();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
};
|
|
|
|
#endif
|