Add EProgressionPath enum
This commit is contained in:
@@ -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,
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user