aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/Light.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Light.hpp')
-rw-r--r--src/components/Light.hpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/components/Light.hpp b/src/components/Light.hpp
index ee215a6..2cb0e1b 100644
--- a/src/components/Light.hpp
+++ b/src/components/Light.hpp
@@ -22,7 +22,7 @@
#include "Component.hpp"
-struct Light : Component<Light>, entityx::Component<Light>
+struct Light : Component<Light>
{
public:
float r, g, b;
@@ -49,6 +49,14 @@ public:
}
return *this;
}
+
+ void serialize(cereal::JSONOutputArchive& ar) final {
+ ar(r, g, b, strength);
+ }
+
+ void serialize(cereal::JSONInputArchive& ar) final {
+ ar(r, g, b, strength);
+ }
};
#endif//COMPONENT_LIGHT_HPP_