mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 12:33:39 +00:00
16 lines
488 B
C++
16 lines
488 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "AthenaEventMatchPlayerWidgetBase.h"
|
|
#include "AthenaEventMatchScoreboardPlayerWidgetBase.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UAthenaEventMatchScoreboardPlayerWidgetBase : public UAthenaEventMatchPlayerWidgetBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UAthenaEventMatchScoreboardPlayerWidgetBase();
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
void SetSquadIdVisible(bool InVisible);
|
|
|
|
};
|
|
|