diff --git a/include/Rectangle.hpp b/include/Rectangle.hpp index c234538d..a3966819 100644 --- a/include/Rectangle.hpp +++ b/include/Rectangle.hpp @@ -80,9 +80,13 @@ class Rectangle : public ::Rectangle { ::DrawRectangleRounded(*this, roundness, segments, color); } + void DrawRoundedLines(float roundness, int segments, ::Color color) const { + ::DrawRectangleRoundedLines(*this, roundness, segments, color); + } + void DrawRoundedLines(float roundness, int segments, float lineThick, ::Color color) const { - ::DrawRectangleRoundedLines(*this, roundness, segments, lineThick, color); + ::DrawRectangleRoundedLinesEx(*this, roundness, segments, lineThick, color); } /**