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

26 lines
748 B
C++
Executable file

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