blob: 9481350174821c71ffd10c49d2f63bab1ee6bb29 [file] [log] [blame]
#ifndef _RIVE_NESTED_LINEAR_ANIMATION_HPP_
#define _RIVE_NESTED_LINEAR_ANIMATION_HPP_
#include "rive/generated/animation/nested_linear_animation_base.hpp"
#include <stdio.h>
namespace rive {
class ArtboardInstance;
class LinearAnimationInstance;
class NestedLinearAnimation : public NestedLinearAnimationBase {
protected:
LinearAnimationInstance* m_AnimationInstance = nullptr;
public:
~NestedLinearAnimation();
void initializeAnimation(ArtboardInstance*) override;
};
} // namespace rive
#endif