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

17 lines
455 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "DebrisActorComponent.h"
#include "DebrisDataComponent.generated.h"
class UDebrisBase;
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UDebrisDataComponent : public UDebrisActorComponent {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
UDebrisBase* Debris;
UDebrisDataComponent();
};