diff options
Diffstat (limited to 'src/components/Velocity.hpp')
-rw-r--r-- | src/components/Velocity.hpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/components/Velocity.hpp b/src/components/Velocity.hpp index 7a75706..776c1dd 100644 --- a/src/components/Velocity.hpp +++ b/src/components/Velocity.hpp @@ -45,11 +45,15 @@ public: } void serialize(cereal::JSONOutputArchive& ar) final { - ar(x, y); + ar(CEREAL_NVP(x), CEREAL_NVP(y)); } void serialize(cereal::JSONInputArchive& ar) final { - ar(x, y); + ar(CEREAL_NVP(x), CEREAL_NVP(y)); + } + + std::string serializeName(void) const final { + return "Velocity"; } }; |