blob: 4d0256f36389fcafd93860446b8070a6024b7a07 [file] [log] [blame]
#ifndef _RIVE_GRADIENT_STOP_HPP_
#define _RIVE_GRADIENT_STOP_HPP_
#include "rive/generated/shapes/paint/gradient_stop_base.hpp"
namespace rive
{
class GradientStop : public GradientStopBase
{
public:
StatusCode onAddedDirty(CoreContext* context) override;
protected:
void colorValueChanged() override;
void positionChanged() override;
};
} // namespace rive
#endif