Skip to content

Commit

Permalink
fix(VirtualObject): make VirtualObject movable
Browse files Browse the repository at this point in the history
  • Loading branch information
lmichaelis committed Nov 7, 2023
1 parent c1f4fbe commit d8701dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/zenkit/vobs/VirtualObject.hh
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,10 @@ namespace zenkit {
///
/// <p>Contains parameters all VObs have, like their position, bounding box and model.</p>
struct VirtualObject {
VirtualObject() = default;
VirtualObject(VirtualObject const&) = delete;
VirtualObject(VirtualObject&&) = default;

struct SaveState {
uint8_t sleep_mode;
float next_on_timer;
Expand Down

0 comments on commit d8701dc

Please sign in to comment.