Files
FNGameProj/Source/FortniteUI/Public/PlatformSupportDesc.h
2024-01-21 00:41:14 +01:00

19 lines
478 B
C++

#pragma once
#include "CoreMinimal.h"
#include "EFortLoginAccountType.h"
#include "PlatformSupportDesc.generated.h"
USTRUCT(BlueprintType)
struct FPlatformSupportDesc {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FText DisableDesc;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
EFortLoginAccountType AccountType;
FORTNITEUI_API FPlatformSupportDesc();
};