blob: 584b43aef4dd8d1abfb184b2c5486dcaeb3d3ae0 [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 NestedInput;
class StateMachineInput;
class ListenerInputChange : public ListenerInputChangeBase
{
public:
StatusCode import(ImportStack& importStack) override;
virtual bool validateInputType(const StateMachineInput* input) const { return true; }
virtual bool validateNestedInputType(const NestedInput* input) const { return true; }
};
} // namespace rive
#endif