mirror of
https://github.com/Relintai/entity_spell_system.git
synced 2025-02-22 17:18:12 +01:00
18 lines
294 B
C++
18 lines
294 B
C++
#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
|