blob: c7ccc04360b4b0e64abda4892a17e40c2a152d41 [file] [log] [blame]
#ifndef _RIVE_LISTENER_INPUT_CHANGE_HPP_
#define _RIVE_LISTENER_INPUT_CHANGE_HPP_
#include "rive/generated/animation/listener_input_change_base.hpp"
namespace rive {
class StateMachineInstance;
class StateMachineInput;
class ListenerInputChange : public ListenerInputChangeBase {
public:
StatusCode import(ImportStack& importStack) override;
virtual void perform(StateMachineInstance* stateMachineInstance) const = 0;
virtual bool validateInputType(const StateMachineInput* input) const { return true; }
};
} // namespace rive
#endif