Add functions to retrieve type of a typed Array

This commit is contained in:
George Marques
2021-03-09 12:30:06 -03:00
parent 497dab94be
commit fbfdd5e110
2 changed files with 20 additions and 0 deletions

View File

@@ -113,6 +113,10 @@ public:
bool typed_assign(const Array &p_other);
void set_typed(uint32_t p_type, const StringName &p_class_name, const Variant &p_script);
bool is_typed() const;
uint32_t get_typed_builtin() const;
StringName get_typed_class_name() const;
Variant get_typed_script() const;
Array(const Array &p_from);
Array();
~Array();