Files
UnrealEngine/Engine/Source/Runtime/Online/BackgroundHTTP/Private/IOS/ApplePlatformBackgroundHttpResponse.cpp
2025-05-18 13:04:45 +08:00

10 lines
329 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "IOS/ApplePlatformBackgroundHttpResponse.h"
FApplePlatformBackgroundHttpResponse::FApplePlatformBackgroundHttpResponse(int32 ResponseCodeIn, const FString& TempContentFilePathIn)
{
TempContentFilePath = TempContentFilePathIn;
ResponseCode = ResponseCodeIn;
}