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