summaryrefslogtreecommitdiff
path: root/core/object/object.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2021-08-23 20:36:48 -0300
committerGitHub <noreply@github.com>2021-08-23 20:36:48 -0300
commitaa3c3a9ebbc096bba9eda324b91acbb7f14a7b07 (patch)
tree5db9dc95f2d2d552a52349bd22578032727d682d /core/object/object.h
parent0df9895eb755dba7ec9bd764c36fa873175bc256 (diff)
parent44d62a9f4b6ac892b1fb9b8998be4162409952e3 (diff)
Merge pull request #52036 from reduz/native-extension-argument-pointers
Implement NativeExtension pointer arguments
Diffstat (limited to 'core/object/object.h')
-rw-r--r--core/object/object.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object/object.h b/core/object/object.h
index aede48343c..a53143158b 100644
--- a/core/object/object.h
+++ b/core/object/object.h
@@ -97,6 +97,7 @@ enum PropertyHint {
PROPERTY_HINT_SAVE_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,". This opens a save dialog
PROPERTY_HINT_INT_IS_OBJECTID,
PROPERTY_HINT_ARRAY_TYPE,
+ PROPERTY_HINT_INT_IS_POINTER,
PROPERTY_HINT_MAX,
// When updating PropertyHint, also sync the hardcoded list in VisualScriptEditorVariableEdit
};