mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
19 lines
570 B
C++
19 lines
570 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "EFortBuildingInteraction.h"
|
|
#include "FortActorIndicatorWidget.h"
|
|
#include "FortBuildingInfoIndicatorWidget.generated.h"
|
|
|
|
class UFortKeybindWidget;
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UFortBuildingInfoIndicatorWidget : public UFortActorIndicatorWidget {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortBuildingInfoIndicatorWidget();
|
|
UFUNCTION(BlueprintCallable)
|
|
void SetKeyBindWidgetBoundAction(UFortKeybindWidget* FortKeybindWidget, const FName ActionName, const EFortBuildingInteraction InteractionType);
|
|
|
|
};
|
|
|