blob: 721489ca58b7a926849b05d56901cef82b66c163 [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