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