Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / rive-cpp / include / rive / shapes / paint / fill.hpp
1 #ifndef _RIVE_FILL_HPP_
2 #define _RIVE_FILL_HPP_
3 #include "rive/generated/shapes/paint/fill_base.hpp"
4 #include "rive/shapes/path_space.hpp"
5 namespace rive {
6     class Fill : public FillBase {
7     public:
8         RenderPaint* initRenderPaint(ShapePaintMutator* mutator) override;
9         PathSpace pathSpace() const override;
10         void draw(Renderer* renderer, CommandPath* path) override;
11     };
12 } // namespace rive
13
14 #endif