blob: 410aa6a0d25a7fd4c56fc4476835bd58bbeb78b2 [file] [log] [blame]
#ifndef _RIVE_NESTED_REMAP_ANIMATION_HPP_
#define _RIVE_NESTED_REMAP_ANIMATION_HPP_
#include "rive/generated/animation/nested_remap_animation_base.hpp"
#include <stdio.h>
namespace rive {
class NestedRemapAnimation : public NestedRemapAnimationBase {
public:
void timeChanged() override;
void advance(float elapsedSeconds) override;
void initializeAnimation(ArtboardInstance*) override;
};
} // namespace rive
#endif