├── .gitignore ├── AsyncPackageStreamer.uplugin ├── LICENSE ├── README.md ├── Resources └── Icon128.png └── Source └── AsyncPackageStreamer ├── AsyncPackageStreamer.Build.cs ├── Private ├── AssetStreamer.cpp ├── AsyncPackageStreamer.cpp └── AsyncPackageStreamerPrivatePCH.h └── Public ├── AssetStreamer.h └── IAsyncPackageStreamer.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/.gitignore -------------------------------------------------------------------------------- /AsyncPackageStreamer.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/AsyncPackageStreamer.uplugin -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Source/AsyncPackageStreamer/AsyncPackageStreamer.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/Source/AsyncPackageStreamer/AsyncPackageStreamer.Build.cs -------------------------------------------------------------------------------- /Source/AsyncPackageStreamer/Private/AssetStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/Source/AsyncPackageStreamer/Private/AssetStreamer.cpp -------------------------------------------------------------------------------- /Source/AsyncPackageStreamer/Private/AsyncPackageStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/Source/AsyncPackageStreamer/Private/AsyncPackageStreamer.cpp -------------------------------------------------------------------------------- /Source/AsyncPackageStreamer/Private/AsyncPackageStreamerPrivatePCH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/Source/AsyncPackageStreamer/Private/AsyncPackageStreamerPrivatePCH.h -------------------------------------------------------------------------------- /Source/AsyncPackageStreamer/Public/AssetStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/Source/AsyncPackageStreamer/Public/AssetStreamer.h -------------------------------------------------------------------------------- /Source/AsyncPackageStreamer/Public/IAsyncPackageStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moritz-wundke/AsyncPackageStreamer/HEAD/Source/AsyncPackageStreamer/Public/IAsyncPackageStreamer.h --------------------------------------------------------------------------------