aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Velocity.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Velocity.hpp')
-rw-r--r--src/components/Velocity.hpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/components/Velocity.hpp b/src/components/Velocity.hpp
index 29c0e5c..776c1dd 100644
--- a/src/components/Velocity.hpp
+++ b/src/components/Velocity.hpp
@@ -22,7 +22,7 @@
#include "Component.hpp"
-struct Velocity : Component<Velocity>, entityx::Component<Velocity>
+struct Velocity : Component<Velocity>
{
public:
double x, y;
@@ -43,6 +43,18 @@ public:
}
return *this;
}
+
+ void serialize(cereal::JSONOutputArchive& ar) final {
+ ar(CEREAL_NVP(x), CEREAL_NVP(y));
+ }
+
+ void serialize(cereal::JSONInputArchive& ar) final {
+ ar(CEREAL_NVP(x), CEREAL_NVP(y));
+ }
+
+ std::string serializeName(void) const final {
+ return "Velocity";
+ }
};
#endif // COMPONENT_VELOCITY_HPP_