23 lines
404 B
C++
23 lines
404 B
C++
// © 2025 Naked People Team. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/DataAsset.h"
|
|
#include "ClothingList.generated.h"
|
|
|
|
class UClothingItemData;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class NAKEDDESIRE_API UClothingList : public UPrimaryDataAsset
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
UPROPERTY(EditDefaultsOnly, BlueprintReadWrite, Instanced)
|
|
TArray<UClothingItemData*> ClothingItems;
|
|
};
|