17 lines
497 B
C++
Executable file
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();
|
|
};
|
|
|