Files
2026-04-22 15:51:07 +02:00

24 lines
594 B
C++

#pragma once
#include "CoreMinimal.h"
#include "CommonButton.h"
#include "FortVoiceChannelToggleButton.generated.h"
class UCommonTextBlock;
UCLASS(Blueprintable, EditInlineNew)
class UFortVoiceChannelToggleButton : public UCommonButton {
GENERATED_BODY()
public:
private:
UPROPERTY(BlueprintReadWrite, EditAnywhere, Instanced, meta=(AllowPrivateAccess=true))
UCommonTextBlock* Text_VoiceChannel;
public:
UFortVoiceChannelToggleButton();
protected:
UFUNCTION(BlueprintCallable, BlueprintImplementableEvent)
void OnVoiceChannelSelected(bool bIsPartyChat);
};