You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Replace Array return types with TypedArray 2
This commit is contained in:
@@ -386,7 +386,7 @@ class ScriptEditor : public PanelContainer {
|
||||
Array _get_cached_breakpoints_for_script(const String &p_path) const;
|
||||
|
||||
ScriptEditorBase *_get_current_editor() const;
|
||||
Array _get_open_script_editors() const;
|
||||
TypedArray<ScriptEditorBase> _get_open_script_editors() const;
|
||||
|
||||
Ref<ConfigFile> script_editor_cache;
|
||||
void _save_editor_state(ScriptEditorBase *p_editor);
|
||||
@@ -452,7 +452,7 @@ class ScriptEditor : public PanelContainer {
|
||||
void _file_dialog_action(String p_file);
|
||||
|
||||
Ref<Script> _get_current_script();
|
||||
Array _get_open_scripts() const;
|
||||
TypedArray<Script> _get_open_scripts() const;
|
||||
|
||||
HashSet<String> textfile_extensions;
|
||||
Ref<TextFile> _load_text_file(const String &p_path, Error *r_error) const;
|
||||
|
||||
Reference in New Issue
Block a user