diff --git a/Runtime/World/CWorldLight.hpp b/Runtime/World/CWorldLight.hpp index 055d02a39..4302617c2 100644 --- a/Runtime/World/CWorldLight.hpp +++ b/Runtime/World/CWorldLight.hpp @@ -29,8 +29,14 @@ private: float x40_ = 0.f; public: - CWorldLight(const CWorldLight&) = default; explicit CWorldLight(CInputStream& in); + + CWorldLight(const CWorldLight&) = default; + CWorldLight& operator=(const CWorldLight&) = default; + + CWorldLight(CWorldLight&&) = default; + CWorldLight& operator=(CWorldLight&&) = default; + EWorldLightType GetLightType() const { return x0_type; } const zeus::CVector3f& GetDirection() const { return x1c_direction; } const zeus::CVector3f& GetPosition() const { return x10_position; }