aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Player.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-02 18:53:21 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-02 18:53:21 -0400
commitaa7b0a92d065b4435467d482ec65dd97b03459ee (patch)
tree0b1c4406f4fbeea6fee2e73eaf735386c5cc1ab6 /src/components/Player.hpp
parent6614ea639414caab546091841bf920fe6459cc9e (diff)
made json names readable
Diffstat (limited to 'src/components/Player.hpp')
-rw-r--r--src/components/Player.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/Player.hpp b/src/components/Player.hpp
index 95b2a96..33db1eb 100644
--- a/src/components/Player.hpp
+++ b/src/components/Player.hpp
@@ -35,6 +35,10 @@ public:
void serialize([[maybe_unused]] cereal::JSONOutputArchive& ar) final {}
void serialize([[maybe_unused]] cereal::JSONInputArchive& ar) final {}
+
+ std::string serializeName(void) const final {
+ return "Player";
+ }
};
#endif // COMPONENT_PLAYER_HPP_