diff options
Diffstat (limited to 'src/components/Name.hpp')
-rw-r--r-- | src/components/Name.hpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/components/Name.hpp b/src/components/Name.hpp index 94b7531..a6a6d8a 100644 --- a/src/components/Name.hpp +++ b/src/components/Name.hpp @@ -21,7 +21,7 @@ #include "Component.hpp" #include <string> -struct Name : Component<Name>, entityx::Component<Name> +struct Name : Component<Name> { public: std::string name; @@ -38,6 +38,18 @@ public: return *this; } + + void serialize(cereal::JSONOutputArchive& ar) final { + ar(CEREAL_NVP(name)); + } + + void serialize(cereal::JSONInputArchive& ar) final { + ar(CEREAL_NVP(name)); + } + + std::string serializeName(void) const final { + return "Name"; + } }; #endif // COMPONENT_NAME_HPP_ |