blob: 0dc03fd5f2cb3b3c19f8debd8baec10809a7489d [file] [log] [blame]
#include "rive/generated/constraints/rotation_constraint_base.hpp"
#include "rive/constraints/rotation_constraint.hpp"
using namespace rive;
Core* RotationConstraintBase::clone() const
{
auto cloned = new RotationConstraint();
cloned->copy(*this);
return cloned;
}