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