blob: ceca0ce5212a8c49c33f5fb5ecec2def3a0d1c99 [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, Artboard* artboard) override;
};
} // namespace rive
#endif