ACR_CreatureBehavior.GameObjectManager.GetGameObjectsUnsafe C# (CSharp) Method

GetGameObjectsUnsafe() private method

Return an enumerator over all of the GameObject instances in the system. Note that this enumerator does NOT check for deleted objects that need garbage collection! It is intended only for use by the PowerShell diagnostics interop infrastructure. Use the standard Get*Object interfaces instead otherwise.
private GetGameObjectsUnsafe ( ) : ICollection
return ICollection
        internal ICollection<GameObject> GetGameObjectsUnsafe()
        {
            return GameObjectTable.Values;
        }