Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

15 lines
493 B
C++

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