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, +};