diff options
| author | Ramesh Ravone <ramesh.maran443@gmail.com> | 2017-10-03 16:07:34 +0530 |
|---|---|---|
| committer | Ramesh Ravone <ramesh.maran443@gmail.com> | 2017-10-03 16:07:34 +0530 |
| commit | 10bb24cfbc21a9cb6591a311052d63c53c498573 (patch) | |
| tree | 0e065c28d6f2f162ae68b9f2c072bfe21cf56914 /include | |
| parent | def39f4862f8d2340db45d3a41903b59e37e3eda (diff) | |
| download | redot-cpp-10bb24cfbc21a9cb6591a311052d63c53c498573.tar.gz | |
updated bindings
Diffstat (limited to 'include')
| -rw-r--r-- | include/core/Array.hpp | 2 | ||||
| -rw-r--r-- | include/core/Color.hpp | 2 | ||||
| -rw-r--r-- | include/core/Dictionary.hpp | 2 | ||||
| -rw-r--r-- | include/core/Godot.hpp | 4 | ||||
| -rw-r--r-- | include/core/NodePath.hpp | 2 | ||||
| -rw-r--r-- | include/core/PoolArrays.hpp | 2 | ||||
| -rw-r--r-- | include/core/RID.hpp | 2 | ||||
| -rw-r--r-- | include/core/String.hpp | 2 | ||||
| -rw-r--r-- | include/core/Variant.hpp | 4 | ||||
| -rw-r--r-- | include/core/Vector2.hpp | 2 |
10 files changed, 12 insertions, 12 deletions
diff --git a/include/core/Array.hpp b/include/core/Array.hpp index 6a64872..2005740 100644 --- a/include/core/Array.hpp +++ b/include/core/Array.hpp @@ -1,7 +1,7 @@ #ifndef ARRAY_H #define ARRAY_H -#include <godot/array.h> +#include <gdnative/array.h> #include "String.hpp" diff --git a/include/core/Color.hpp b/include/core/Color.hpp index 5232573..5c3cd9e 100644 --- a/include/core/Color.hpp +++ b/include/core/Color.hpp @@ -1,7 +1,7 @@ #ifndef COLOR_H #define COLOR_H -#include <godot/color.h> +#include <gdnative/color.h> #include <cmath> diff --git a/include/core/Dictionary.hpp b/include/core/Dictionary.hpp index 31744b7..238724d 100644 --- a/include/core/Dictionary.hpp +++ b/include/core/Dictionary.hpp @@ -5,7 +5,7 @@ #include "Array.hpp" -#include <godot/dictionary.h> +#include <gdnative/dictionary.h> namespace godot { diff --git a/include/core/Godot.hpp b/include/core/Godot.hpp index 90a73aa..98bcf62 100644 --- a/include/core/Godot.hpp +++ b/include/core/Godot.hpp @@ -4,8 +4,8 @@ #include <cstdlib> #include <cstring> -#include <godot/gdnative.h> -#include <godot_nativescript.h> +#include <gdnative/gdnative.h> +#include <nativescript/godot_nativescript.h> #include <CoreTypes.hpp> diff --git a/include/core/NodePath.hpp b/include/core/NodePath.hpp index f4b4b25..235c95e 100644 --- a/include/core/NodePath.hpp +++ b/include/core/NodePath.hpp @@ -3,7 +3,7 @@ #include "String.hpp" -#include <godot/node_path.h> +#include <gdnative/node_path.h> namespace godot { diff --git a/include/core/PoolArrays.hpp b/include/core/PoolArrays.hpp index 6c07ae1..e10d8e9 100644 --- a/include/core/PoolArrays.hpp +++ b/include/core/PoolArrays.hpp @@ -8,7 +8,7 @@ #include "Vector2.hpp" #include "Vector3.hpp" -#include <godot/pool_arrays.h> +#include <gdnative/pool_arrays.h> namespace godot { diff --git a/include/core/RID.hpp b/include/core/RID.hpp index 3f83e79..3a968bf 100644 --- a/include/core/RID.hpp +++ b/include/core/RID.hpp @@ -1,7 +1,7 @@ #ifndef RID_H #define RID_H -#include <godot/rid.h> +#include <gdnative/rid.h> namespace godot { diff --git a/include/core/String.hpp b/include/core/String.hpp index dec8104..ea28778 100644 --- a/include/core/String.hpp +++ b/include/core/String.hpp @@ -1,7 +1,7 @@ #ifndef STRING_H #define STRING_H -#include <godot/string.h> +#include <gdnative/string.h> namespace godot { diff --git a/include/core/Variant.hpp b/include/core/Variant.hpp index 6d9b1a7..b4741f9 100644 --- a/include/core/Variant.hpp +++ b/include/core/Variant.hpp @@ -1,7 +1,7 @@ #ifndef VARIANT_H #define VARIANT_H -#include <godot/variant.h> +#include <gdnative/variant.h> #include "Defs.hpp" @@ -259,7 +259,7 @@ public: bool hash_compare(const Variant& b) const; - bool booleanize(bool &valid) const; + bool booleanize() const; ~Variant(); diff --git a/include/core/Vector2.hpp b/include/core/Vector2.hpp index da45ccf..3372f99 100644 --- a/include/core/Vector2.hpp +++ b/include/core/Vector2.hpp @@ -1,7 +1,7 @@ #ifndef VECTOR2_H #define VECTOR2_H -#include <godot/vector2.h> +#include <gdnative/vector2.h> #include "Defs.hpp" |
