mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-23 12:26:59 +01:00
20 lines
260 B
C++
20 lines
260 B
C++
#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
|