summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/variant
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-01-06 20:54:57 +0100
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-01-06 21:12:52 +0100
commitf037a697eb2ce45d63840dfe87c48212d7cbf09e (patch)
tree77c42ef7fe00e736ceb9204d1b2fc5a847fa7c0c /include/godot_cpp/variant
parentdd62b9685fbc9b733a25e26a788b5d7f3212a804 (diff)
downloadredot-cpp-f037a697eb2ce45d63840dfe87c48212d7cbf09e.tar.gz
Add missing `OP_POWER` operator to `Variant`
Diffstat (limited to 'include/godot_cpp/variant')
-rw-r--r--include/godot_cpp/variant/variant.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/godot_cpp/variant/variant.hpp b/include/godot_cpp/variant/variant.hpp
index 4b58642..3c64791 100644
--- a/include/godot_cpp/variant/variant.hpp
+++ b/include/godot_cpp/variant/variant.hpp
@@ -122,6 +122,7 @@ public:
OP_NEGATE,
OP_POSITIVE,
OP_MODULE,
+ OP_POWER,
// bitwise
OP_SHIFT_LEFT,
OP_SHIFT_RIGHT,