From 6614ea639414caab546091841bf920fe6459cc9e Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 2 Sep 2019 18:23:09 -0400 Subject: json entity saving: cout --- src/components/Velocity.hpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/components/Velocity.hpp') diff --git a/src/components/Velocity.hpp b/src/components/Velocity.hpp index 29c0e5c..7a75706 100644 --- a/src/components/Velocity.hpp +++ b/src/components/Velocity.hpp @@ -22,7 +22,7 @@ #include "Component.hpp" -struct Velocity : Component, entityx::Component +struct Velocity : Component { public: double x, y; @@ -43,6 +43,14 @@ public: } return *this; } + + void serialize(cereal::JSONOutputArchive& ar) final { + ar(x, y); + } + + void serialize(cereal::JSONInputArchive& ar) final { + ar(x, y); + } }; #endif // COMPONENT_VELOCITY_HPP_ -- cgit v1.2.3