blob: d76cc0e5c1a2f0a94e6e692427ad700b6808dce8 [file] [log] [blame]
#ifndef _RIVE_LISTENER_NUMBER_CHANGE_HPP_
#define _RIVE_LISTENER_NUMBER_CHANGE_HPP_
#include "rive/generated/animation/listener_number_change_base.hpp"
namespace rive
{
class NestedInput;
class ListenerNumberChange : public ListenerNumberChangeBase
{
public:
bool validateInputType(const StateMachineInput* input) const override;
bool validateNestedInputType(const NestedInput* input) const override;
void perform(StateMachineInstance* stateMachineInstance, Vec2D position) const override;
};
} // namespace rive
#endif