Mark MWPhysics::Actor constructor and assignment operators as deleted

make_linux_ci_do_zoomies
elsid 2 years ago
parent bceca33699
commit aeb4611d6c
No known key found for this signature in database
GPG Key ID: 4DE04C198CBA7625

@ -33,6 +33,10 @@ namespace MWPhysics
bool canWaterWalk, DetourNavigator::CollisionShapeType collisionShapeType);
~Actor() override;
Actor(const Actor&) = delete;
Actor& operator=(const Actor&) = delete;
/**
* Sets the collisionMode for this actor. If disabled, the actor can fly and clip geometry.
*/
@ -205,9 +209,6 @@ namespace MWPhysics
PhysicsTaskScheduler* mTaskScheduler;
Actor(const Actor&);
Actor& operator=(const Actor&);
inline void updateScaleUnsafe();
inline void updateCollisionObjectPositionUnsafe();

Loading…
Cancel
Save