12 lines
344 B
C++
Executable file
12 lines
344 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "WidgetComponentCustomMaterial.h"
|
|
#include "HealthBarComponent.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
|
|
class UHealthBarComponent : public UWidgetComponentCustomMaterial {
|
|
GENERATED_BODY()
|
|
public:
|
|
UHealthBarComponent();
|
|
};
|
|
|