blob: f7b354456a6098054613496f3a46849999c92d40 [file] [log] [blame]
#include "rive/generated/constraints/transform_constraint_base.hpp"
#include "rive/constraints/transform_constraint.hpp"
using namespace rive;
Core* TransformConstraintBase::clone() const
{
auto cloned = new TransformConstraint();
cloned->copy(*this);
return cloned;
}