blob: 71df2b2d10650088fc33758bfa70bbbc3d750058 [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;
}