blob: 9e93cc990c3d6f42a1321c758475a6c389195d40 [file] [log] [blame]
#include "rive/importers/keyed_object_importer.hpp"
#include "rive/animation/keyed_object.hpp"
#include "rive/animation/keyed_property.hpp"
#include "rive/artboard.hpp"
using namespace rive;
KeyedObjectImporter::KeyedObjectImporter(KeyedObject* keyedObject) : m_KeyedObject(keyedObject) {}
void KeyedObjectImporter::addKeyedProperty(std::unique_ptr<KeyedProperty> property)
{
m_KeyedObject->addKeyedProperty(std::move(property));
}