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

26 lines
718 B
C++
Executable file

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