Skip to content

Commit d95d4d4

Browse files
committed
Merge branch 'master' of https://github.com/raysan5/raylib
2 parents 68201c1 + 349ff16 commit d95d4d4

File tree

4 files changed

+379
-331
lines changed

4 files changed

+379
-331
lines changed

parser/output/raylib_api.json

+23
Original file line numberDiff line numberDiff line change
@@ -5911,6 +5911,29 @@
59115911
},
59125912
{
59135913
"name": "DrawRectangleRoundedLines",
5914+
"description": "Draw rectangle lines with rounded edges",
5915+
"returnType": "void",
5916+
"params": [
5917+
{
5918+
"type": "Rectangle",
5919+
"name": "rec"
5920+
},
5921+
{
5922+
"type": "float",
5923+
"name": "roundness"
5924+
},
5925+
{
5926+
"type": "int",
5927+
"name": "segments"
5928+
},
5929+
{
5930+
"type": "Color",
5931+
"name": "color"
5932+
}
5933+
]
5934+
},
5935+
{
5936+
"name": "DrawRectangleRoundedLinesEx",
59145937
"description": "Draw rectangle with rounded edges outline",
59155938
"returnType": "void",
59165939
"params": [

parser/output/raylib_api.lua

+11
Original file line numberDiff line numberDiff line change
@@ -4891,6 +4891,17 @@ return {
48914891
},
48924892
{
48934893
name = "DrawRectangleRoundedLines",
4894+
description = "Draw rectangle lines with rounded edges",
4895+
returnType = "void",
4896+
params = {
4897+
{type = "Rectangle", name = "rec"},
4898+
{type = "float", name = "roundness"},
4899+
{type = "int", name = "segments"},
4900+
{type = "Color", name = "color"}
4901+
}
4902+
},
4903+
{
4904+
name = "DrawRectangleRoundedLinesEx",
48944905
description = "Draw rectangle with rounded edges outline",
48954906
returnType = "void",
48964907
params = {

0 commit comments

Comments
 (0)