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