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

20 lines
579 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "HitscanComponent.h"
#include "AllPiercingHitscanComponent.generated.h"
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class FSD_API UAllPiercingHitscanComponent : public UHitscanComponent {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float PiercingDepth;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
int32 TracePartitions;
public:
UAllPiercingHitscanComponent();
};