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