diff options
Diffstat (limited to 'src/crepe/Metadata.h')
-rw-r--r-- | src/crepe/Metadata.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/crepe/Metadata.h b/src/crepe/Metadata.h deleted file mode 100644 index 1577987..0000000 --- a/src/crepe/Metadata.h +++ /dev/null @@ -1,23 +0,0 @@ -#pragma once - -#include <string> -#include <vector> - -#include "Component.h" - -namespace crepe { - -class Metadata : public Component { -public: - Metadata(uint32_t game_object_id, const std::string & name, - const std::string & tag); - virtual int get_instances_max() const { return 1; } - -public: - std::string name; - std::string tag; - uint32_t parent = -1; - std::vector<uint32_t> children; -}; - -} // namespace crepe |