You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Replace Array return types with TypedArray 2
This commit is contained in:
@@ -37,6 +37,8 @@
|
||||
#include "core/templates/rb_map.h"
|
||||
|
||||
class ScriptLanguage;
|
||||
template <typename T>
|
||||
class TypedArray;
|
||||
|
||||
typedef void (*ScriptEditRequestFunction)(const String &p_path);
|
||||
|
||||
@@ -108,9 +110,9 @@ protected:
|
||||
virtual void _placeholder_erased(PlaceHolderScriptInstance *p_placeholder) {}
|
||||
|
||||
Variant _get_property_default_value(const StringName &p_property);
|
||||
Array _get_script_property_list();
|
||||
Array _get_script_method_list();
|
||||
Array _get_script_signal_list();
|
||||
TypedArray<Dictionary> _get_script_property_list();
|
||||
TypedArray<Dictionary> _get_script_method_list();
|
||||
TypedArray<Dictionary> _get_script_signal_list();
|
||||
Dictionary _get_script_constant_map();
|
||||
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user