blob: 47a83feef98f4506a0070c16a497691135c16650 [file] [log] [blame]
#include "rive/generated/shapes/rectangle_base.hpp"
#include "rive/shapes/rectangle.hpp"
using namespace rive;
Core* RectangleBase::clone() const
{
auto cloned = new Rectangle();
cloned->copy(*this);
return cloned;
}