blob: 3de3c2a4fa5fb51cba3c690a264aa1251fa872bd [file] [log] [blame]
#include "rive/generated/constraints/translation_constraint_base.hpp"
#include "rive/constraints/translation_constraint.hpp"
using namespace rive;
Core* TranslationConstraintBase::clone() const
{
auto cloned = new TranslationConstraint();
cloned->copy(*this);
return cloned;
}