mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
25 lines
252 B
C++
25 lines
252 B
C++
#ifndef SKILL_H
|
|
#define SKILL_H
|
|
|
|
#include "core/resource.h"
|
|
#include "core/ustring.h"
|
|
|
|
#include "aura.h"
|
|
|
|
class Skill : public Aura {
|
|
GDCLASS(Skill, Aura);
|
|
|
|
public:
|
|
|
|
Skill();
|
|
~Skill();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
#endif
|