blob: 3f0b0a2a5b20796bd5c4d79a18fea647fbcec95f [file] [log] [blame]
#ifndef _RIVE_NESTED_SIMPLE_ANIMATION_HPP_
#define _RIVE_NESTED_SIMPLE_ANIMATION_HPP_
#include "rive/generated/animation/nested_simple_animation_base.hpp"
#include <stdio.h>
namespace rive {
class NestedSimpleAnimation : public NestedSimpleAnimationBase {
public:
void advance(float elapsedSeconds) override;
};
} // namespace rive
#endif