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

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();
};