mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
20 lines
702 B
C++
20 lines
702 B
C++
#include "FortChatManager.h"
|
|
|
|
UFortChatManager::UFortChatManager() {
|
|
GlobalChatJoinHelper = NULL;
|
|
FoundersChatJoinHelper = NULL;
|
|
bShouldJoinGlobalChat = false;
|
|
bShouldRequestGeneralChatRooms = false;
|
|
bShouldJoinFounderChat = false;
|
|
bIsAthenaGlobalChatEnabled = false;
|
|
RecommendChatFailureDelay = 0;
|
|
RecommendChatBackoffMultiplier = 1;
|
|
RecommendChatRandomWindow = 1;
|
|
RecommendChatFailureCountCap = 0;
|
|
ReserveChatURL = TEXT("/api/game/v2/chat/`accountId/reserveGeneralChatRooms/`subgame/`platform");
|
|
GlobalChatName = TEXT("Global");
|
|
FounderChatName = TEXT("Founder");
|
|
ProfileTokenVerifyURL = TEXT("/api/game/v2/profileToken/verify/`accountId");
|
|
}
|
|
|