├── Examples └── UnitTests.cs ├── README.md └── Runtime ├── DownloadFulfillerFactory.cs ├── IDownloadFulfiller.cs ├── IDownloader.cs ├── UWRFulfiller.cs ├── UnityFileDownloader.cs └── utils ├── CommonExtensions.cs ├── HTTPHelper.cs ├── SemaphoreLocker.cs └── UnityWebRequestExtensions.cs /Examples/UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/Examples/UnitTests.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/README.md -------------------------------------------------------------------------------- /Runtime/DownloadFulfillerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/Runtime/DownloadFulfillerFactory.cs -------------------------------------------------------------------------------- /Runtime/IDownloadFulfiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/Runtime/IDownloadFulfiller.cs -------------------------------------------------------------------------------- /Runtime/IDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/Runtime/IDownloader.cs -------------------------------------------------------------------------------- /Runtime/UWRFulfiller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/Runtime/UWRFulfiller.cs -------------------------------------------------------------------------------- /Runtime/UnityFileDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/Runtime/UnityFileDownloader.cs -------------------------------------------------------------------------------- /Runtime/utils/CommonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/Runtime/utils/CommonExtensions.cs -------------------------------------------------------------------------------- /Runtime/utils/HTTPHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/Runtime/utils/HTTPHelper.cs -------------------------------------------------------------------------------- /Runtime/utils/SemaphoreLocker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/Runtime/utils/SemaphoreLocker.cs -------------------------------------------------------------------------------- /Runtime/utils/UnityWebRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpgordon00/UnityFileDownloader/HEAD/Runtime/utils/UnityWebRequestExtensions.cs --------------------------------------------------------------------------------