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