blob: d012d93feba7c333a245568fe7a53a9b6115a83a [file] [log] [blame]
#include "rive/generated/animation/state_machine_layer_base.hpp"
#include "rive/animation/state_machine_layer.hpp"
using namespace rive;
Core* StateMachineLayerBase::clone() const
{
auto cloned = new StateMachineLayer();
cloned->copy(*this);
return cloned;
}