API/Autodoc/Files/FURuStoreInstallState.h.md


Classes

Name
struct FURuStoreInstallState — Описывает текущее состояние установки обновления.

Source code

// Copyright Epic Games, Inc. All Rights Reserved.

#include "FURuStoreInstallState.generated.h"

USTRUCT(BlueprintType)
struct RUSTOREAPPUPDATE_API FURuStoreInstallState
{
    GENERATED_USTRUCT_BODY()
    
    
    FURuStoreInstallState()
    {
        bytesDownloaded = 0;
        totalBytesToDownload = 0;
        percentDownloaded = 0;
        installStatus = EURuStoreInstallStatus::UNKNOWN;
        installErrorCode = EURuStoreInstallErrorCode::ERROR_UNKNOWN;
    }

    UPROPERTY(BlueprintReadWrite)
    int64 bytesDownloaded;

    UPROPERTY(BlueprintReadWrite)
    int64 totalBytesToDownload;

    UPROPERTY(BlueprintReadWrite)
    float percentDownloaded;

    UPROPERTY(BlueprintReadWrite)
    EURuStoreInstallStatus installStatus;

    UPROPERTY(BlueprintReadWrite)
    EURuStoreInstallErrorCode installErrorCode;
};

Назад