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