diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-04-06 08:08:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-06 08:08:54 +0200 |
commit | f5f9b220f9f2a4977df7c7888db650b67b12c8a5 (patch) | |
tree | 23cf1a122b74024362bcee6548f572be6fb52c6a /modules/dlscript/godot/godot_node_path.h | |
parent | d681e571ac8464e15187f5e3aa9ca2ede2387903 (diff) | |
parent | 7d914a289c13f2defd48b8edb9c86ab47046bd5f (diff) |
Merge pull request #8276 from karroffel/dlscript-stl
[DLScript] API fixed and removed STL imports
Diffstat (limited to 'modules/dlscript/godot/godot_node_path.h')
-rw-r--r-- | modules/dlscript/godot/godot_node_path.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/dlscript/godot/godot_node_path.h b/modules/dlscript/godot/godot_node_path.h index b322e55d83..04f1e70c1d 100644 --- a/modules/dlscript/godot/godot_node_path.h +++ b/modules/dlscript/godot/godot_node_path.h @@ -16,6 +16,7 @@ typedef struct godot_node_path { #include "../godot.h" void GDAPI godot_node_path_new(godot_node_path *p_np, const godot_string *p_from); +void GDAPI godot_node_path_copy(godot_node_path *p_np, const godot_node_path *p_from); godot_string GDAPI godot_node_path_get_name(const godot_node_path *p_np, const godot_int p_idx); godot_int GDAPI godot_node_path_get_name_count(const godot_node_path *p_np); |