summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay San <[email protected]>2018-02-02 11:01:38 +0100
committerRay San <[email protected]>2018-02-02 11:01:38 +0100
commitd1ef6869a9e9404ce7039ddddad8fa35240d4f42 (patch)
treefea38c651ad2f4ca4c63f28a0ee41cd37734b23c /src/raylib.h
parent58346414f7322a0e4d643439f457b6147ee4cbc5 (diff)
downloadraylib-d1ef6869a9e9404ce7039ddddad8fa35240d4f42.tar.gz
raylib-d1ef6869a9e9404ce7039ddddad8fa35240d4f42.zip
Added function DrawRectangleLinesEx()
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 76ad9b55..f881dc68 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -851,6 +851,7 @@ RLAPI void DrawRectangleGradientV(int posX, int posY, int width, int height, Col
RLAPI void DrawRectangleGradientH(int posX, int posY, int width, int height, Color color1, Color color2);// Draw a horizontal-gradient-filled rectangle
RLAPI void DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3, Color col4); // Draw a gradient-filled rectangle with custom vertex colors
RLAPI void DrawRectangleLines(int posX, int posY, int width, int height, Color color); // Draw rectangle outline
+RLAPI void DrawRectangleLinesEx(Rectangle rec, int lineThick, Color color); // Draw rectangle outline with extended parameters
RLAPI void DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color); // Draw a color-filled triangle
RLAPI void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color); // Draw triangle outline
RLAPI void DrawPoly(Vector2 center, int sides, float radius, float rotation, Color color); // Draw a regular polygon (Vector version)