blob: c8c006cc72d42c82ce3b47a44c49d3a89556ff88 [file] [log] [blame]
#ifndef _RIVE_FILL_HPP_
#define _RIVE_FILL_HPP_
#include "rive/generated/shapes/paint/fill_base.hpp"
#include "rive/shapes/path_space.hpp"
namespace rive {
class Fill : public FillBase {
public:
RenderPaint* initRenderPaint(ShapePaintMutator* mutator) override;
PathSpace pathSpace() const override;
void draw(Renderer* renderer, CommandPath* path) override;
};
} // namespace rive
#endif