blob: d5540e9f057a13b611ee96700be0e6dbcede900c [file] [log] [blame]
#include "rive/importers/linear_animation_importer.hpp"
#include "rive/animation/keyed_object.hpp"
#include "rive/animation/linear_animation.hpp"
#include "rive/artboard.hpp"
using namespace rive;
LinearAnimationImporter::LinearAnimationImporter(LinearAnimation* animation) :
m_Animation(animation)
{
}
void LinearAnimationImporter::addKeyedObject(KeyedObject* object)
{
m_Animation->addKeyedObject(object);
}