blob: ccac754a33a9cc2805fa0628543871b03a283f40 [file] [log] [blame]
#include "rive/generated/shapes/paint/gradient_stop_base.hpp"
#include "rive/shapes/paint/gradient_stop.hpp"
using namespace rive;
Core* GradientStopBase::clone() const
{
auto cloned = new GradientStop();
cloned->copy(*this);
return cloned;
}