aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Script.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Script.hpp')
-rw-r--r--src/components/Script.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/Script.hpp b/src/components/Script.hpp
index b3c89f3..178c933 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,9 @@ 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 {}
};
#endif // COMPONENT_SCRIPT_HPP_