[Adaptation Layer] Added rive-tizen adaptation layer class.
[platform/core/uifw/rive-tizen.git] / submodule / include / animation / blend_state_direct_instance.hpp
1 #ifndef _RIVE_BLEND_STATE_DIRECT_INSTANCE_HPP_
2 #define _RIVE_BLEND_STATE_DIRECT_INSTANCE_HPP_
3
4 #include "animation/blend_state_instance.hpp"
5 #include "animation/blend_state_direct.hpp"
6 #include "animation/blend_animation_direct.hpp"
7
8 namespace rive
9 {
10         class BlendStateDirectInstance
11             : public BlendStateInstance<BlendStateDirect, BlendAnimationDirect>
12         {
13         public:
14                 BlendStateDirectInstance(const BlendStateDirect* blendState);
15                 void advance(float seconds, SMIInput** inputs) override;
16         };
17 } // namespace rive
18 #endif