Skip to content

Commit

Permalink
Merge branch 'master' of https:/raysan5/raylib
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed Sep 22, 2024
2 parents 100f662 + 1c7b189 commit a643dd0
Show file tree
Hide file tree
Showing 4 changed files with 473 additions and 446 deletions.
11 changes: 11 additions & 0 deletions parser/output/raylib_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -4502,6 +4502,17 @@
"description": "Get the directory of the running application (uses static string)",
"returnType": "const char *"
},
{
"name": "MakeDirectory",
"description": "Create directories (including full path requested), returns 0 on success",
"returnType": "int",
"params": [
{
"type": "const char *",
"name": "dirPath"
}
]
},
{
"name": "ChangeDirectory",
"description": "Change working directory, return true on success",
Expand Down
8 changes: 8 additions & 0 deletions parser/output/raylib_api.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4067,6 +4067,14 @@ return {
description = "Get the directory of the running application (uses static string)",
returnType = "const char *"
},
{
name = "MakeDirectory",
description = "Create directories (including full path requested), returns 0 on success",
returnType = "int",
params = {
{type = "const char *", name = "dirPath"}
}
},
{
name = "ChangeDirectory",
description = "Change working directory, return true on success",
Expand Down
Loading

0 comments on commit a643dd0

Please sign in to comment.