blob: 460ad2b1a3bb7867a18df90985c63ba9ed4c74d4 [file] [log] [blame]
#include "rive/generated/animation/nested_state_machine_base.hpp"
#include "rive/animation/nested_state_machine.hpp"
using namespace rive;
Core* NestedStateMachineBase::clone() const {
auto cloned = new NestedStateMachine();
cloned->copy(*this);
return cloned;
}