mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
22 lines
567 B
C++
22 lines
567 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "Engine/DataTable.h"
|
|
#include "FortCreativeServerDisplayOption.generated.h"
|
|
|
|
class UTexture;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FFortCreativeServerDisplayOption : public FTableRowBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
UTexture* Image;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FLinearColor Color;
|
|
|
|
FORTNITEUI_API FFortCreativeServerDisplayOption();
|
|
};
|
|
|