godot-cpp/include/godot_cpp/core/NodePath.hpp

43 lines
519 B
C++
Raw Normal View History

2017-03-03 00:07:14 +00:00
#ifndef NODEPATH_H
#define NODEPATH_H
2017-03-06 07:49:24 +00:00
#include "String.hpp"
2017-03-03 00:07:14 +00:00
#include <godot/godot_node_path.h>
namespace godot {
class NodePath
{
godot_node_path _node_path;
public:
NodePath();
NodePath(const String &from);
String get_name(const int idx) const;
int get_name_count() const;
String get_property() const;
String get_subname(const int idx) const;
int get_subname_count() const;
bool is_absolute() const;
bool is_empty() const;
operator String() const;
~NodePath();
2017-03-03 00:07:14 +00:00
};
}
#endif // NODEPATH_H