aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Name.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-02 18:23:09 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-02 18:23:09 -0400
commit6614ea639414caab546091841bf920fe6459cc9e (patch)
tree408df7aeb419ed6e096512d371f499ac6732cade /src/components/Name.hpp
parent0466537f81106f679c0b291be26861862c43c13c (diff)
json entity saving: cout
Diffstat (limited to 'src/components/Name.hpp')
-rw-r--r--src/components/Name.hpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/components/Name.hpp b/src/components/Name.hpp
index 94b7531..b42ef46 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,14 @@ public:
return *this;
}
+
+ void serialize(cereal::JSONOutputArchive& ar) final {
+ ar(name);
+ }
+
+ void serialize(cereal::JSONInputArchive& ar) final {
+ ar(name);
+ }
};
#endif // COMPONENT_NAME_HPP_