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

27 lines
775 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "DeepPathfinderCharacter.h"
#include "DroneCharacter.generated.h"
class UHealthComponent;
class UOutlineComponent;
class USimpleObjectInfoComponent;
UCLASS(Abstract, Blueprintable)
class ADroneCharacter : public ADeepPathfinderCharacter {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
UHealthComponent* HealthComponent;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
UOutlineComponent* OutlineComponent;
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
USimpleObjectInfoComponent* ObjectInfo;
public:
ADroneCharacter();
};