mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
23 lines
512 B
C++
23 lines
512 B
C++
#include "FortChatWidget.h"
|
|
|
|
void UFortChatWidget::SetControllerActionBrush(FSlateBrush SlateBrush) {
|
|
}
|
|
|
|
void UFortChatWidget::MinimizeChatWidget() {
|
|
}
|
|
|
|
void UFortChatWidget::FocusChatEntry() {
|
|
}
|
|
|
|
UFortChatWidget::UFortChatWidget() {
|
|
this->MinimizeEnabled = true;
|
|
this->AutoReleaseFocus = true;
|
|
this->AllowEmotes = true;
|
|
this->ListFadeTime = 10.00f;
|
|
this->MinimizedChatMessageNum = 4;
|
|
this->ThrottleChat = true;
|
|
this->ThrottleTicketTime = 5.00f;
|
|
this->ThrottleTicketCount = 5;
|
|
}
|
|
|