blob: 32e575e4c7b268ae8541621c8ace3b1e3a5e46be [file] [log] [blame]
#ifndef _RIVE_BLEND_ANIMATION_HPP_
#define _RIVE_BLEND_ANIMATION_HPP_
#include "rive/generated/animation/blend_animation_base.hpp"
namespace rive
{
class LinearAnimation;
class BlendAnimation : public BlendAnimationBase
{
private:
LinearAnimation* m_Animation = nullptr;
public:
const LinearAnimation* animation() const { return m_Animation; }
StatusCode import(ImportStack& importStack) override;
};
} // namespace rive
#endif