blob: 810c95e58ecd8529239987f48283fe0d10da1788 [file] [log] [blame]
#include "rive/generated/constraints/scale_constraint_base.hpp"
#include "rive/constraints/scale_constraint.hpp"
using namespace rive;
Core* ScaleConstraintBase::clone() const
{
auto cloned = new ScaleConstraint();
cloned->copy(*this);
return cloned;
}