12 lines
351 B
C++
Executable file
12 lines
351 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Components/WidgetComponent.h"
|
|
#include "FirstPersonWidgetComponent.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
|
|
class UFirstPersonWidgetComponent : public UWidgetComponent {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFirstPersonWidgetComponent();
|
|
};
|
|
|