blob: 9f933d9114ae6948922e6f59c70462b6261923e0 [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 ListenerNumberChange : public ListenerNumberChangeBase {
public:
bool validateInputType(const StateMachineInput* input) const override;
void perform(StateMachineInstance* stateMachineInstance, Vec2D position) const override;
};
} // namespace rive
#endif