diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-02 18:53:21 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2019-09-02 18:53:21 -0400 |
commit | aa7b0a92d065b4435467d482ec65dd97b03459ee (patch) | |
tree | 0b1c4406f4fbeea6fee2e73eaf735386c5cc1ab6 /src/components/Velocity.hpp | |
parent | 6614ea639414caab546091841bf920fe6459cc9e (diff) |
made json names readable
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"; } }; |