diff options
Diffstat (limited to 'src/light.hpp')
-rw-r--r-- | src/light.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/light.hpp b/src/light.hpp index 0033f1c5..ea65a23f 100644 --- a/src/light.hpp +++ b/src/light.hpp @@ -9,10 +9,12 @@ namespace floormat { struct light_proto : object_proto { + ~light_proto() noexcept override; light_proto(); light_proto(const light_proto&); light_proto& operator=(const light_proto&); - ~light_proto() noexcept override; + light_proto(light_proto&&) noexcept; + light_proto& operator=(light_proto&&) noexcept; bool operator==(const light_proto&) const; float max_distance = 0; |