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