26 lines
793 B
C++
Executable file
26 lines
793 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EMicroMissileLauncherUpgrades.h"
|
|
#include "StandardItemUpgrade.h"
|
|
#include "Templates/SubclassOf.h"
|
|
#include "UpgradeValues.h"
|
|
#include "MicroMissileLauncherUpgrade.generated.h"
|
|
|
|
class AFSDPlayerState;
|
|
class AItem;
|
|
|
|
UCLASS(Blueprintable, EditInlineNew, MinimalAPI)
|
|
class UMicroMissileLauncherUpgrade : public UStandardItemUpgrade {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
EMicroMissileLauncherUpgrades upgradeType;
|
|
|
|
public:
|
|
UMicroMissileLauncherUpgrade();
|
|
UFUNCTION(BlueprintCallable, BlueprintPure)
|
|
static FUpgradeValues GetUpgradedValue(TSubclassOf<AItem> Item, AFSDPlayerState* Player, EMicroMissileLauncherUpgrades NewUpgradeType);
|
|
|
|
};
|
|
|