mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
24 lines
594 B
C++
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);
|
|
|
|
};
|
|
|