Added ClothingItemInstance and cleanup the project

This commit is contained in:
koritsa
2026-05-20 23:26:26 +03:00
committed by koritsa
parent 805931acab
commit f984d5199a
49 changed files with 252 additions and 391 deletions
+2 -2
View File
@@ -7,7 +7,7 @@
#include "GameFramework/Actor.h"
#include "Wardrobe.generated.h"
class UClothingItemData;
class UClothingItemInstance;
UCLASS(Blueprintable)
class NAKEDDESIRE_API AWardrobe : public AInteractableBase
@@ -16,5 +16,5 @@ class NAKEDDESIRE_API AWardrobe : public AInteractableBase
public:
UPROPERTY(EditAnywhere, BlueprintReadWrite, Instanced)
TArray<UClothingItemData*> ClothingItems;
TArray<TObjectPtr<UClothingItemInstance>> ClothingItems;
};