20 lines
482 B
C++
Executable file
20 lines
482 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/NoExportTypes.h"
|
|
#include "SoftIconWithColor.generated.h"
|
|
|
|
class UTexture2D;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FSoftIconWithColor {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
TSoftObjectPtr<UTexture2D> Icon;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FLinearColor Tint;
|
|
|
|
FSD_API FSoftIconWithColor();
|
|
};
|
|
|