blob: 72f26bde1c3eb0cf2c1bf4d6b778822731f9a097 [file]
#ifndef _RIVE_TRANSITION_TRIGGER_CONDITION_HPP_
#define _RIVE_TRANSITION_TRIGGER_CONDITION_HPP_
#include "generated/animation/transition_trigger_condition_base.hpp"
#include <stdio.h>
namespace rive
{
class TransitionTriggerCondition : public TransitionTriggerConditionBase
{
public:
bool evaluate(const SMIInput* inputInstance) const override;
protected:
bool validateInputType(const StateMachineInput* input) const override;
};
} // namespace rive
#endif