15 lines
276 B
C
15 lines
276 B
C
// © 2025 Naked People Team. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "ClothingSlotWidgetData.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct NAKEDDESIRE_API FClothingSlotWidgetData
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
UPROPERTY(EditDefaultsOnly)
|
|
UTexture2D* PlaceholderIcon = nullptr;
|
|
};
|