blob: 75cf223fa1ac7830015812563f44e5c86d392fc3 [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