mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
19 lines
569 B
C++
19 lines
569 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "FortSquadSelectorButton.h"
|
|
#include "FortDefenderSquadSelectorButton.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UFortDefenderSquadSelectorButton : public UFortSquadSelectorButton {
|
|
GENERATED_BODY()
|
|
public:
|
|
UFortDefenderSquadSelectorButton();
|
|
UFUNCTION(BlueprintCallable, BlueprintPure)
|
|
bool TryGetTheaterUniqueId(FString& OutTheaterUniqueId, bool& OutIsUnlocked) const;
|
|
|
|
UFUNCTION(BlueprintCallable, BlueprintPure)
|
|
bool TryGetPowerLevel(int32& OutPowerLevel);
|
|
|
|
};
|
|
|