aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Player.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-02 18:23:09 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-02 18:23:09 -0400
commit6614ea639414caab546091841bf920fe6459cc9e (patch)
tree408df7aeb419ed6e096512d371f499ac6732cade /src/components/Player.hpp
parent0466537f81106f679c0b291be26861862c43c13c (diff)
json entity saving: cout
Diffstat (limited to 'src/components/Player.hpp')
-rw-r--r--src/components/Player.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/Player.hpp b/src/components/Player.hpp
index 5c1e870..95b2a96 100644
--- a/src/components/Player.hpp
+++ b/src/components/Player.hpp
@@ -23,13 +23,18 @@
#include "Component.hpp"
-struct Player : Component<Player>, entityx::Component<Player>
+struct Player : Component<Player>
{
public:
+ char _unused;
+
Player FromLua([[maybe_unused]] sol::object ref)
{
return *this;
}
+
+ void serialize([[maybe_unused]] cereal::JSONOutputArchive& ar) final {}
+ void serialize([[maybe_unused]] cereal::JSONInputArchive& ar) final {}
};
#endif // COMPONENT_PLAYER_HPP_