diff options
Diffstat (limited to 'src/components/Script.hpp')
-rw-r--r-- | src/components/Script.hpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/Script.hpp b/src/components/Script.hpp index b3c89f3..f792750 100644 --- a/src/components/Script.hpp +++ b/src/components/Script.hpp @@ -21,7 +21,7 @@ #include "Component.hpp" -struct Scripted : Component<Scripted>, entityx::Component<Scripted> +struct Scripted : Component<Scripted> { public: sol::table caller; @@ -60,6 +60,13 @@ public: if (caller["RenderIdle"] == sol::type::function) caller["RenderIdle"](caller); } + + void serialize([[maybe_unused]] cereal::JSONOutputArchive& ar) final {} + void serialize([[maybe_unused]] cereal::JSONInputArchive& ar) final {} + + std::string serializeName(void) const final { + return "Scripted"; + } }; #endif // COMPONENT_SCRIPT_HPP_ |