diff options
author | Karroffel <therzog@mail.de> | 2017-04-06 02:32:24 +0200 |
---|---|---|
committer | Karroffel <therzog@mail.de> | 2017-04-06 02:32:24 +0200 |
commit | 5e3b01f0f136819b5628d4edec847eac2a4374a5 (patch) | |
tree | 8673ea914db1407a5f13cbee2ae6d1ae12b63b5d /include/godot_cpp/core/Variant.hpp | |
parent | 63c2b9d474784447d01cb4c90aabdfd3ab5e373c (diff) | |
download | redot-cpp-5e3b01f0f136819b5628d4edec847eac2a4374a5.tar.gz |
some NodePath fixes and better handling of Object type arguments
Diffstat (limited to 'include/godot_cpp/core/Variant.hpp')
-rw-r--r-- | include/godot_cpp/core/Variant.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/godot_cpp/core/Variant.hpp b/include/godot_cpp/core/Variant.hpp index 68e1210..baa1498 100644 --- a/include/godot_cpp/core/Variant.hpp +++ b/include/godot_cpp/core/Variant.hpp @@ -205,7 +205,7 @@ public: operator NodePath() const; operator RID() const; operator InputEvent() const; - operator Object() const; + operator Object*() const; operator Dictionary() const; operator Array() const; |