diff options
Diffstat (limited to 'include/godot_cpp/core/NodePath.hpp')
-rw-r--r-- | include/godot_cpp/core/NodePath.hpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/godot_cpp/core/NodePath.hpp b/include/godot_cpp/core/NodePath.hpp index c941ad0..3f75ca1 100644 --- a/include/godot_cpp/core/NodePath.hpp +++ b/include/godot_cpp/core/NodePath.hpp @@ -24,7 +24,11 @@ class GD_CPP_CORE_API NodePath public: NodePath(); - NodePath(const String &from); + NodePath(const NodePath &other); + + NodePath(const String& from); + + NodePath(const char *contents); String get_name(const int idx) const; @@ -42,6 +46,8 @@ public: operator String() const; + void operator =(const NodePath& other); + ~NodePath(); }; |