mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
396 B
C++
16 lines
396 B
C++
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "CommonButton.h"
|
|
#include "IconTextButtonSpectatorBase.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable, EditInlineNew)
|
|
class UIconTextButtonSpectatorBase : public UCommonButton {
|
|
GENERATED_BODY()
|
|
public:
|
|
UIconTextButtonSpectatorBase();
|
|
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
|
|
void SetText(const FText& Text);
|
|
|
|
};
|
|
|