16 lines
349 B
C++
Executable file
16 lines
349 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "DebrisWhenCarving.generated.h"
|
|
|
|
class UDebrisInstances;
|
|
|
|
USTRUCT(BlueprintType)
|
|
struct FDebrisWhenCarving {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
|
|
UDebrisInstances* Debris;
|
|
|
|
FSD_API FDebrisWhenCarving();
|
|
};
|
|
|