blob: 8a16dac0728056315e81e11b46034902746555dc [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;
}