DRG-Femboy-Voice/Source/FSD/Public/SingleUsableUpgrade.h
2025-04-15 12:39:31 -07:00

26 lines
785 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ESingleUsableUpgradeType.h"
#include "StandardItemUpgrade.h"
#include "Templates/SubclassOf.h"
#include "UpgradeValues.h"
#include "SingleUsableUpgrade.generated.h"
class AActor;
class AFSDPlayerState;
UCLASS(Blueprintable, EditInlineNew, MinimalAPI)
class USingleUsableUpgrade : public UStandardItemUpgrade {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
ESingleUsableUpgradeType upgradeType;
public:
USingleUsableUpgrade();
UFUNCTION(BlueprintCallable, BlueprintPure)
static FUpgradeValues GetUpgradedValue(TSubclassOf<AActor> Item, TSubclassOf<AActor> subItem, AFSDPlayerState* Player, ESingleUsableUpgradeType NewUpgradeType);
};