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