diff options
author | Juan Linietsky <reduzio@gmail.com> | 2023-01-31 10:52:43 +0100 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2023-01-31 11:28:21 +0100 |
commit | 79897dd5bc75bb0553a48fd36537454f5ad95764 (patch) | |
tree | 75f3f4808bd1d08644dcd52eeb5be28072b5baef /core/config/project_settings.h | |
parent | e9de988020f3d46c3e7b4fd5a8a80724996035e0 (diff) |
Restore script class cache if removed
I have no idea why anyone would do this, but this fixes it.
Fixes #72154. Depends on #72444 being merged to function properly.
Diffstat (limited to 'core/config/project_settings.h')
-rw-r--r-- | core/config/project_settings.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/config/project_settings.h b/core/config/project_settings.h index d1704a7c31..70f697741f 100644 --- a/core/config/project_settings.h +++ b/core/config/project_settings.h @@ -143,6 +143,7 @@ public: Variant get_setting(const String &p_setting, const Variant &p_default_value = Variant()) const; Array get_global_class_list(); void store_global_class_list(const Array &p_classes); + String get_global_class_list_path() const; bool has_setting(String p_var) const; String localize_path(const String &p_path) const; |