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