mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
Merge pull request #20706 from mysticfall/issue-20705
Add missing GetPtr() for Dictionary<> and Array<>
This commit is contained in:
commit
c4e75aa63a
@ -331,5 +331,10 @@ namespace Godot
|
||||
{
|
||||
return GetEnumerator();
|
||||
}
|
||||
|
||||
internal IntPtr GetPtr()
|
||||
{
|
||||
return objectArray.GetPtr();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -397,5 +397,10 @@ namespace Godot
|
||||
{
|
||||
return GetEnumerator();
|
||||
}
|
||||
|
||||
internal IntPtr GetPtr()
|
||||
{
|
||||
return objectDict.GetPtr();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user