Merge pull request #20706 from mysticfall/issue-20705

Add missing GetPtr() for Dictionary<> and Array<>
This commit is contained in:
Ignacio Etcheverry 2018-08-13 22:37:09 +02:00 committed by GitHub
commit c4e75aa63a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -331,5 +331,10 @@ namespace Godot
{
return GetEnumerator();
}
internal IntPtr GetPtr()
{
return objectArray.GetPtr();
}
}
}

View File

@ -397,5 +397,10 @@ namespace Godot
{
return GetEnumerator();
}
internal IntPtr GetPtr()
{
return objectDict.GetPtr();
}
}
}