summaryrefslogtreecommitdiffstats
path: root/include/core/NodePath.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/core/NodePath.hpp')
-rw-r--r--include/core/NodePath.hpp15
1 files changed, 6 insertions, 9 deletions
diff --git a/include/core/NodePath.hpp b/include/core/NodePath.hpp
index e9e60ac..aaa6727 100644
--- a/include/core/NodePath.hpp
+++ b/include/core/NodePath.hpp
@@ -7,16 +7,15 @@
namespace godot {
-
-class NodePath
-{
+class NodePath {
godot_node_path _node_path;
+
public:
NodePath();
NodePath(const NodePath &other);
- NodePath(const String& from);
+ NodePath(const String &from);
NodePath(const char *contents);
@@ -34,15 +33,13 @@ public:
operator String() const;
- void operator =(const NodePath& other);
+ void operator=(const NodePath &other);
- bool operator ==(const NodePath& other);
+ bool operator==(const NodePath &other);
~NodePath();
};
-
-
-}
+} // namespace godot
#endif // NODEPATH_H