Beispiel #1
0
        public void Destroy()
        {
            if (isDestroyed)
            {
                return;
            }
            isDestroyed = true;

            downloadQueue?.Destroy();
            linker?.Destroy();
            coroutineOwner?.Destroy();

            downloadQueue  = null;
            linker         = null;
            coroutineOwner = null;
            errorHandler   = null;
        }