blob: 09ee94c582efe79694e3a7615d4400256b14fe24 [file]
#ifndef _RIVE_LINEAR_ANIMATION_IMPORTER_HPP_
#define _RIVE_LINEAR_ANIMATION_IMPORTER_HPP_
#include "importers/import_stack.hpp"
namespace rive
{
class Core;
class LinearAnimation;
class KeyedObject;
class LinearAnimationImporter : public ImportStackObject
{
private:
LinearAnimation* m_Animation;
public:
LinearAnimation* animation() const { return m_Animation; };
LinearAnimationImporter(LinearAnimation* animation);
void addKeyedObject(KeyedObject* object);
};
} // namespace rive
#endif