entity_spell_system/data/item_visual_entry.h

20 lines
279 B
C++

#ifndef ITEM_VISUAL_ENTRY_H
#define ITEM_VISUAL_ENTRY_H
#include "core/resource.h"
class ItemVisualEntry : public Resource {
GDCLASS(ItemVisualEntry, Resource);
public:
ItemVisualEntry();
~ItemVisualEntry();
protected:
static void _bind_methods();
//private:
};
#endif