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