Add parent ID parameter to node creation functions in Rust and C++

This commit is contained in:
MayaTheShy
2025-11-16 22:08:57 -05:00
parent 8be82ca505
commit bcdbd11c7c
3 changed files with 7 additions and 4 deletions

View File

@@ -83,7 +83,7 @@ private:
using fn_start_t = int(*)(const char*);
using fn_poll_t = int(*)();
using fn_shutdown_t = void(*)();
using fn_create_node_t = std::uint64_t(*)(const char*, const float*);
using fn_create_node_t = std::uint64_t(*)(const char*, const float*, std::uint64_t);
using fn_update_node_t = int(*)(std::uint64_t, const float*);
using fn_remove_node_t = int(*)(std::uint64_t);
using fn_set_model_t = int(*)(std::uint64_t, const char*);