blob: ed2d887240b3cf0c9de648d687d2a542f4886e8f [file] [log] [blame]
#include "rive/generated/shapes/polygon_base.hpp"
#include "rive/shapes/polygon.hpp"
using namespace rive;
Core* PolygonBase::clone() const
{
auto cloned = new Polygon();
cloned->copy(*this);
return cloned;
}