blob: 9bdaa963b27b394d8bab526c56e5fb712bdab0b2 [file] [log] [blame]
#include "rive/generated/animation/state_machine_trigger_base.hpp"
#include "rive/animation/state_machine_trigger.hpp"
using namespace rive;
Core* StateMachineTriggerBase::clone() const
{
auto cloned = new StateMachineTrigger();
cloned->copy(*this);
return cloned;
}