Add EProgressionPath enum

This commit is contained in:
koritsa
2026-05-20 00:07:45 +03:00
parent c4bfb80cd1
commit 1b2d9f9098
2 changed files with 19 additions and 0 deletions
@@ -6,6 +6,7 @@
#include "ClothingSlotType.h" #include "ClothingSlotType.h"
#include "Engine/DataAsset.h" #include "Engine/DataAsset.h"
#include "NakedDesire/Player/PrivateBodyPartType.h" #include "NakedDesire/Player/PrivateBodyPartType.h"
#include "NakedDesire/Progression/ProgressionPath.h"
#include "ClothingItem.generated.h" #include "ClothingItem.generated.h"
/** /**
@@ -46,4 +47,7 @@ public:
UPROPERTY(EditDefaultsOnly, BlueprintReadOnly) UPROPERTY(EditDefaultsOnly, BlueprintReadOnly)
bool UseLeaderPose = false; bool UseLeaderPose = false;
UPROPERTY(EditDefaultsOnly, BlueprintReadOnly)
EProgressionPath ProgressionPath;
}; };
@@ -0,0 +1,15 @@
// © 2025 Naked People Team. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "ProgressionPath.generated.h"
UENUM(BlueprintType)
enum class EProgressionPath : uint8
{
None = 0,
Slut = 1,
Exhibitionist = 2,
Slave = 3,
};