diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-26 22:46:34 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-09-26 22:46:34 +0200 |
commit | 251fb83d536a96110790bbf85b3fa50e5a8e2b7c (patch) | |
tree | 495df7ada8bf25d7cbb3002d3b605a72768ed84e /core/extension/extension_api_dump.h | |
parent | f14ed3067dac7e8cb4b81c5df9210d12c0dcedad (diff) | |
parent | 8ee04c5f872e0147b5e8ddd53e3bdfac8a0c9932 (diff) | |
download | redot-engine-251fb83d536a96110790bbf85b3fa50e5a8e2b7c.tar.gz |
Merge pull request #82331 from rburing/gdextension_dump_docs
Optionally include documentation in GDExtension API dump
Diffstat (limited to 'core/extension/extension_api_dump.h')
-rw-r--r-- | core/extension/extension_api_dump.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/extension/extension_api_dump.h b/core/extension/extension_api_dump.h index 11ea2cf923..204a115f84 100644 --- a/core/extension/extension_api_dump.h +++ b/core/extension/extension_api_dump.h @@ -37,8 +37,8 @@ class GDExtensionAPIDump { public: - static Dictionary generate_extension_api(); - static void generate_extension_json_file(const String &p_path); + static Dictionary generate_extension_api(bool p_include_docs = false); + static void generate_extension_json_file(const String &p_path, bool p_include_docs = false); static Error validate_extension_json_file(const String &p_path); }; #endif |