mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
19 lines
571 B
C++
19 lines
571 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ArsenicCoreWidgetBase.h"
|
|
#include "ArsenicCoreHumansAndGhostsLeftBase.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UArsenicCoreHumansAndGhostsLeftBase : public UArsenicCoreWidgetBase {
|
|
GENERATED_BODY()
|
|
public:
|
|
UArsenicCoreHumansAndGhostsLeftBase();
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
void SetHumansLeftText(const FText& HumansText);
|
|
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
void SetGhostsLeftText(const FText& GhostsText);
|
|
|
|
};
|
|
|