blob: 37e95cfb251156fe16c34aceb3da4f88641e94ad [file] [log] [blame]
#include "rive/generated/animation/state_machine_listener_base.hpp"
#include "rive/animation/state_machine_listener.hpp"
using namespace rive;
Core* StateMachineListenerBase::clone() const
{
auto cloned = new StateMachineListener();
cloned->copy(*this);
return cloned;
}