blob: 29424af921ba31f788f5c7acd896099f7a543087 [file] [log] [blame]
#include "rive/generated/text/text_input_selection_base.hpp"
#include "rive/text/text_input_selection.hpp"
using namespace rive;
Core* TextInputSelectionBase::clone() const
{
auto cloned = new TextInputSelection();
cloned->copy(*this);
return cloned;
}