blob: 0ff71eb076d77ffa0d19220b1efde79fff6201a6 [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;
}