diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-10-31 02:58:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-31 02:58:33 +0000 |
commit | 1e356b53ae7768e278b5bad7285184ea1dc4588c (patch) | |
tree | 822e78c8b1b83587f6a732e8c34f0a7161d19bed /platform/android/java_godot_wrapper.h | |
parent | 3386a662914dde912ab9a7f41266d7c662be7eff (diff) | |
parent | 82de309d58c5f0e221b85463cca2983cd7ed0289 (diff) | |
download | redot-engine-1e356b53ae7768e278b5bad7285184ea1dc4588c.tar.gz |
Merge pull request #823 from Spartan322/merge/8004c75
Merge commit godotengine/godot@8004c75
Diffstat (limited to 'platform/android/java_godot_wrapper.h')
-rw-r--r-- | platform/android/java_godot_wrapper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/android/java_godot_wrapper.h b/platform/android/java_godot_wrapper.h index 65e91491f2..ed31499984 100644 --- a/platform/android/java_godot_wrapper.h +++ b/platform/android/java_godot_wrapper.h @@ -60,6 +60,7 @@ private: jmethodID _get_clipboard = nullptr; jmethodID _set_clipboard = nullptr; jmethodID _has_clipboard = nullptr; + jmethodID _show_input_dialog = nullptr; jmethodID _request_permission = nullptr; jmethodID _request_permissions = nullptr; jmethodID _get_granted_permissions = nullptr; @@ -105,6 +106,7 @@ public: void set_clipboard(const String &p_text); bool has_has_clipboard(); bool has_clipboard(); + Error show_input_dialog(const String &p_title, const String &p_message, const String &p_existing_text); bool request_permission(const String &p_name); bool request_permissions(); Vector<String> get_granted_permissions() const; |