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

19 lines
584 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "PawnAfflictionComponent.h"
#include "DeepPatherFinderCharacterAfflictionComponent.generated.h"
class ADeepPathfinderCharacter;
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UDeepPatherFinderCharacterAfflictionComponent : public UPawnAfflictionComponent {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Transient, meta=(AllowPrivateAccess=true))
ADeepPathfinderCharacter* Character;
public:
UDeepPatherFinderCharacterAfflictionComponent();
};