blob: 61242f307796f3c734243c234162f1a351249687 [file]
#include "rive/generated/animation/keyframe_int_base.hpp"
#include "rive/animation/keyframe_int.hpp"
using namespace rive;
Core* KeyFrameIntBase::clone() const
{
auto cloned = new KeyFrameInt();
cloned->copy(*this);
return cloned;
}