blob: 19ff88cecdce288cfa08d5517d79ba5530a8d917 [file] [log] [blame]
#include "rive/generated/shapes/straight_vertex_base.hpp"
#include "rive/shapes/straight_vertex.hpp"
using namespace rive;
Core* StraightVertexBase::clone() const {
auto cloned = new StraightVertex();
cloned->copy(*this);
return cloned;
}