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

20 lines
485 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Templates/SubclassOf.h"
#include "GrabAvoidClassEntry.generated.h"
class AActor;
USTRUCT(BlueprintType)
struct FGrabAvoidClassEntry {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSubclassOf<AActor> ActorClass;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float DistanceToKeep;
FSD_API FGrabAvoidClassEntry();
};