blob: d7890be48380c183bc6314e9f87b5d67fb9378c6 [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;
}