blob: b0b2544ef8a81d2010d890f6cf6cb58e1d0758da [file] [log] [blame]
#ifndef _RIVE_BLEND_STATE_DIRECT_INSTANCE_HPP_
#define _RIVE_BLEND_STATE_DIRECT_INSTANCE_HPP_
#include "rive/animation/blend_state_instance.hpp"
#include "rive/animation/blend_state_direct.hpp"
#include "rive/animation/blend_animation_direct.hpp"
namespace rive
{
class BlendStateDirectInstance
: public BlendStateInstance<BlendStateDirect, BlendAnimationDirect>
{
public:
BlendStateDirectInstance(const BlendStateDirect* blendState);
void advance(float seconds, SMIInput** inputs) override;
};
} // namespace rive
#endif