// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "HAL/Platform.h" class FString; template class TFunction; typedef TFunction FDownloadComplete; typedef TFunction FDownloadProgress; typedef TFunction FDownloadCancel; extern FDownloadCancel PlatformStreamDownload(const FString& Url, const FString& TargetFile, const FDownloadProgress& Progress, const FDownloadComplete& Callback);