blob: be4f4b90cc9b8a510ab1e1fe95099cc33d62ec13 [file] [log] [blame]
#include "rive/generated/constraints/ik_constraint_base.hpp"
#include "rive/constraints/ik_constraint.hpp"
using namespace rive;
Core* IKConstraintBase::clone() const
{
auto cloned = new IKConstraint();
cloned->copy(*this);
return cloned;
}