summaryrefslogtreecommitdiff
path: root/core/extension
diff options
context:
space:
mode:
authorYuri Roubinsky <chaosus89@gmail.com>2022-03-07 20:25:21 +0300
committerYuri Rubinsky <chaosus89@gmail.com>2022-05-11 16:30:37 +0300
commitdbd7a315074257bca834e1448b53a905ebb8dd8b (patch)
treea13d08663bc046cb445373b7828d0f3ac42cd867 /core/extension
parent9963ae3553d059e4ac3b57c7a4cdc55d1a87d49a (diff)
Implement exponential operator (**) to GDScript/Expressions
Diffstat (limited to 'core/extension')
-rw-r--r--core/extension/gdnative_interface.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/extension/gdnative_interface.h b/core/extension/gdnative_interface.h
index 36d51ff2b9..98976b29f6 100644
--- a/core/extension/gdnative_interface.h
+++ b/core/extension/gdnative_interface.h
@@ -114,6 +114,7 @@ typedef enum {
GDNATIVE_VARIANT_OP_NEGATE,
GDNATIVE_VARIANT_OP_POSITIVE,
GDNATIVE_VARIANT_OP_MODULE,
+ GDNATIVE_VARIANT_OP_POWER,
/* bitwise */
GDNATIVE_VARIANT_OP_SHIFT_LEFT,
GDNATIVE_VARIANT_OP_SHIFT_RIGHT,