Merge pull request #15880 from neikeq/better-collections

Mono: Add Dictionary and Array classes
This commit is contained in:
Ignacio Etcheverry 2018-07-23 23:59:04 +02:00 committed by GitHub
commit 779c9d638e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 1415 additions and 183 deletions

View file

@ -1609,7 +1609,7 @@ void CSharpScript::load_script_signals(GDMonoClass *p_class, GDMonoClass *p_nati
bool CSharpScript::_get_signal(GDMonoClass *p_class, GDMonoClass *p_delegate, Vector<Argument> &params) {
if (p_delegate->has_attribute(CACHED_CLASS(SignalAttribute))) {
MonoType *raw_type = GDMonoClass::get_raw_type(p_delegate);
MonoType *raw_type = p_delegate->get_mono_type();
if (mono_type_get_type(raw_type) == MONO_TYPE_CLASS) {
// Arguments are accessibles as arguments of .Invoke method