blob: b260e98907fee70e8064456bd51a5613e96d084d [file] [log] [blame]
#include "rive/generated/shapes/paint/stroke_base.hpp"
#include "rive/shapes/paint/stroke.hpp"
using namespace rive;
Core* StrokeBase::clone() const {
auto cloned = new Stroke();
cloned->copy(*this);
return cloned;
}