entity_spell_system/entities/data/entity_data_container.h

18 lines
294 B
C
Raw Normal View History

2019-09-11 15:06:30 +02:00
#ifndef ENTITY_DATA_CONTAINER_H
#define ENTITY_DATA_CONTAINER_H
#include "core/reference.h"
class EntityDataContainer : public Reference {
GDCLASS(EntityDataContainer, Reference);
public:
EntityDataContainer();
~EntityDataContainer();
protected:
static void _bind_methods();
};
#endif