Added binding generator

This commit is contained in:
Karroffel
2017-03-04 05:36:31 +01:00
parent 8cbebc3e5d
commit 5762c2f53f
25 changed files with 298 additions and 2 deletions

View File

@@ -5,7 +5,7 @@
#include <cmath>
#include <String.h>
#include "String.h"
namespace godot {

View File

@@ -1,7 +1,7 @@
#ifndef NODEPATH_H
#define NODEPATH_H
#include <String.h>
#include "String.h"
#include <godot/godot_node_path.h>
@@ -12,6 +12,11 @@ class NodePath
{
godot_node_path _node_path;
public:
NodePath()
{
}
NodePath(const String &from)
{
godot_node_path_new(&_node_path, (godot_string *) &from);