Files
UnrealEvent/Project/Source/FortniteGame/Public/ImportFriendsRewardNotification.h
2026-04-22 15:51:07 +02:00

16 lines
399 B
C++

#pragma once
#include "CoreMinimal.h"
#include "McpLootEntry.h"
#include "ImportFriendsRewardNotification.generated.h"
USTRUCT(BlueprintType)
struct FORTNITEGAME_API FImportFriendsRewardNotification {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TArray<FMcpLootEntry> LootGranted;
FImportFriendsRewardNotification();
};