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