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

17 lines
497 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "SubHealthComponent.h"
#include "PassthroughSubHealthComponent.generated.h"
class USceneComponent;
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UPassthroughSubHealthComponent : public USubHealthComponent {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
USceneComponent* ArmorComponent;
UPassthroughSubHealthComponent();
};