From c4bfb80cd1b0b1f71ca02cdd24193166cbd271db Mon Sep 17 00:00:00 2001 From: koritsa Date: Wed, 20 May 2026 00:04:33 +0300 Subject: [PATCH] Introduce EBodyPart enum --- Source/NakedDesire/Clothing/BodyPart.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Source/NakedDesire/Clothing/BodyPart.h diff --git a/Source/NakedDesire/Clothing/BodyPart.h b/Source/NakedDesire/Clothing/BodyPart.h new file mode 100644 index 00000000..4826532a --- /dev/null +++ b/Source/NakedDesire/Clothing/BodyPart.h @@ -0,0 +1,15 @@ +// © 2025 Naked People Team. All Rights Reserved. + +#pragma once + +#include "CoreMinimal.h" +#include "BodyPart.generated.h" + +UENUM(BlueprintType) +enum class EBodyPart : uint8 +{ + None = 0, + Boobs = 1, + Ass = 2, + Genitals = 3, +};