23 lines
650 B
C++
Executable file
23 lines
650 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "MicrowaveLense.generated.h"
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FMicrowaveLense {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
float ShotRadiusMultiplier;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
float ShotBonusDamageModifier;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
float HeatModifier;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
float RateOfFireModifier;
|
|
|
|
FSD_API FMicrowaveLense();
|
|
};
|
|
|