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);
        }