From aa7b0a92d065b4435467d482ec65dd97b03459ee Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 2 Sep 2019 18:53:21 -0400 Subject: made json names readable --- src/components/Position.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/components/Position.hpp') diff --git a/src/components/Position.hpp b/src/components/Position.hpp index 6157265..56e8707 100644 --- a/src/components/Position.hpp +++ b/src/components/Position.hpp @@ -44,11 +44,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 "Position"; } }; -- cgit v1.2.3