// © 2025 Naked People Team. All Rights Reserved. #pragma once #include "CoreMinimal.h" #include "CoverageObjectiveBase.h" #include "WearOnlyUnderwearObjective.generated.h" // Stripped to underwear: at least one underwear slot worn while every outer body-clothing slot // (Outerwear / Top / Bottom / Bodysuit) is empty. Socks / footwear / accessories are ignored. UCLASS(EditInlineNew, DisplayName = "Wear Only Underwear") class NAKEDDESIRE_API UWearOnlyUnderwearObjective : public UCoverageObjectiveBase { GENERATED_BODY() public: virtual FText GetDescription() const override; protected: virtual bool IsConditionMet() const override; };