blob: 3eb681476438172bb69f902b885bd6399d47cf31 [file]
#include "generated/animation/state_machine_base.hpp"
#include "animation/state_machine.hpp"
using namespace rive;
Core* StateMachineBase::clone() const
{
auto cloned = new StateMachine();
cloned->copy(*this);
return cloned;
}