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/Render.hpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/components/Render.hpp') diff --git a/src/components/Render.hpp b/src/components/Render.hpp index 49a9588..81ca591 100644 --- a/src/components/Render.hpp +++ b/src/components/Render.hpp @@ -55,11 +55,15 @@ public: } void serialize(cereal::JSONOutputArchive& ar) final { - ar(visible, flipX); + ar(CEREAL_NVP(visible), CEREAL_NVP(flipX)); } void serialize(cereal::JSONInputArchive& ar) final { - ar(visible, flipX); + ar(CEREAL_NVP(visible), CEREAL_NVP(flipX)); + } + + std::string serializeName(void) const final { + return "Render"; } }; -- cgit v1.2.3