mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
19 lines
478 B
C++
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();
|
|
};
|
|
|