diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-20 12:09:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-20 12:09:45 +0100 |
commit | b6cb3668847379149b879d0633e8196900a845b7 (patch) | |
tree | cd73656d30a276904bc87a4a3c59e8c9643847ad /platform/android/java_godot_wrapper.h | |
parent | 7057d26343a8d8b7e743be48cd9207272ce6a8c6 (diff) | |
parent | 314f309035c9d50b41720e02550f31f89751fce0 (diff) |
Merge pull request #56949 from timothyqiu/has-clipboard
Diffstat (limited to 'platform/android/java_godot_wrapper.h')
-rw-r--r-- | platform/android/java_godot_wrapper.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/android/java_godot_wrapper.h b/platform/android/java_godot_wrapper.h index 4d058ac426..42ae91480f 100644 --- a/platform/android/java_godot_wrapper.h +++ b/platform/android/java_godot_wrapper.h @@ -58,6 +58,7 @@ private: jmethodID _get_GLES_version_code = 0; jmethodID _get_clipboard = 0; jmethodID _set_clipboard = 0; + jmethodID _has_clipboard = 0; jmethodID _request_permission = 0; jmethodID _request_permissions = 0; jmethodID _get_granted_permissions = 0; @@ -92,6 +93,8 @@ public: String get_clipboard(); bool has_set_clipboard(); void set_clipboard(const String &p_text); + bool has_has_clipboard(); + bool has_clipboard(); bool request_permission(const String &p_name); bool request_permissions(); Vector<String> get_granted_permissions() const; |