pandemonium_engine/modules/entity_spell_system/data/atlases/character_atlas.h

20 lines
260 B
C++
Raw Normal View History

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