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

20 lines
541 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "ShotMultiplier.generated.h"
USTRUCT(BlueprintType)
struct FShotMultiplier {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
float Undercharge;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
float Overcharge;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
bool TriBurst;
FSD_API FShotMultiplier();
};