Files
2026-04-22 15:51:07 +02:00

19 lines
451 B
C++

#pragma once
#include "CoreMinimal.h"
#include "Engine/DataAsset.h"
#include "FortTooltipTokenInfo.h"
#include "FortTokenToTextTable.generated.h"
UCLASS(Blueprintable)
class FORTNITEGAME_API UFortTokenToTextTable : public UDataAsset {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TArray<FFortTooltipTokenInfo> TokenInfoList;
public:
UFortTokenToTextTable();
};