blob: a4b74d4387c3b30e6051e22e33d81dc83bd5030f [file] [log] [blame]
#include "rive/generated/animation/blend_state_transition_base.hpp"
#include "rive/animation/blend_state_transition.hpp"
using namespace rive;
Core* BlendStateTransitionBase::clone() const
{
auto cloned = new BlendStateTransition();
cloned->copy(*this);
return cloned;
}