DRG-Femboy-Voice/Source/FSD/Public/SoftIconWithColor.h
2025-04-15 12:39:31 -07:00

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();
};