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

15 lines
419 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Components/SceneComponent.h"
#include "DebrisActorComponent.generated.h"
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UDebrisActorComponent : public USceneComponent {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool Enabled;
UDebrisActorComponent();
};