blob: 9b0b9fbcd4d838bc6ea50e8d19a104c8232ee991 [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(KeyedProperty* property)
{
m_KeyedObject->addKeyedProperty(property);
}