ACR_Candlekeep.Archives.WaitForResourcesLoaded C# (CSharp) Метод

WaitForResourcesLoaded() публичный Метод

Wait for resources to become available.
public WaitForResourcesLoaded ( bool Wait ) : bool
Wait bool Supplies true to perform a blocking wait, else /// false to return immediately with the current availability status. ///
Результат bool
        public bool WaitForResourcesLoaded(bool Wait)
        {
            if (_resourcesLoaded) return true;
            return ResourcesLoadedEvent.WaitOne(Wait ? Timeout.Infinite : 0);
        }