blob: 0ba8a2b2c4c037d7cc488ffd9dc4bee234c85947 [file] [log] [blame]
#include "rive/generated/animation/state_machine_event_base.hpp"
#include "rive/animation/state_machine_event.hpp"
using namespace rive;
Core* StateMachineEventBase::clone() const {
auto cloned = new StateMachineEvent();
cloned->copy(*this);
return cloned;
}