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