Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / rive-cpp / include / rive / animation / nested_simple_animation.hpp
1 #ifndef _RIVE_NESTED_SIMPLE_ANIMATION_HPP_
2 #define _RIVE_NESTED_SIMPLE_ANIMATION_HPP_
3 #include "rive/generated/animation/nested_simple_animation_base.hpp"
4 #include <stdio.h>
5 namespace rive {
6     class NestedSimpleAnimation : public NestedSimpleAnimationBase {
7     public:
8         void advance(float elapsedSeconds) override;
9     };
10 } // namespace rive
11
12 #endif