diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-01-02 20:17:31 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-01-02 20:17:31 -0300 |
commit | 1597082c85a2bf3ddca0414de1fa32fb5f2e5350 (patch) | |
tree | 9329b37b872ef4b97ccd9ea7c2a9f2a234867303 /core/variant.h | |
parent | 61745855d0bb309cb0ebcd2d92fc15f7f6fb1840 (diff) | |
download | redot-engine-1597082c85a2bf3ddca0414de1fa32fb5f2e5350.tar.gz |
-Ability to roll-back script-exported properties to their default value on the script, closes #2128
Diffstat (limited to 'core/variant.h')
-rw-r--r-- | core/variant.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/variant.h b/core/variant.h index 05bb5a7328..4c3ccc0119 100644 --- a/core/variant.h +++ b/core/variant.h @@ -411,6 +411,7 @@ public: //argsVariant call() bool operator==(const Variant& p_variant) const; + bool operator!=(const Variant& p_variant) const; bool operator<(const Variant& p_variant) const; uint32_t hash() const; |