blob: c1d01304d7c61ca0d59a6f0303360d1b9aa72a22 [file]
#ifndef _RIVE_GRADIENT_STOP_HPP_
#define _RIVE_GRADIENT_STOP_HPP_
#include "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