From 6160119141a505cfc773539d026b46a875c68054 Mon Sep 17 00:00:00 2001 From: Yang Zhao Date: Mon, 25 Aug 2025 23:20:49 -0700 Subject: [PATCH] Remove BOM from all files When installing into a Perforce-backed project, BOM will cause p4 to use "utf8" filetype which can have undesirable effects. Remove all usages of BOM to eliminate such potential complications. --- Source/AccelByteUe4Sdk/Private/Api/AccelByteAMSApi.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Api/AccelByteChallengeApi.cpp | 2 +- .../AccelByteUe4Sdk/Private/Api/AccelByteConfigurationsApi.cpp | 2 +- .../AccelByteUe4Sdk/Private/Api/AccelByteMatchmakingV2Api.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Api/AccelByteRewardApi.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Api/AccelByteSeasonPassApi.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Api/AccelByteSessionApi.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Blueprints/ABGroup.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Blueprints/ABUser.cpp | 2 +- .../AccelByteUe4Sdk/Private/Blueprints/AccelByteBPApiClient.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteBPLobby.cpp | 2 +- .../Private/Blueprints/AccelByteInstanceBlueprints.cpp | 2 +- .../Private/Core/AccelByteEntitlementTokenGenerator.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Core/AccelByteInstance.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Core/AccelByteJwtWrapper.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Core/AccelByteJwtWrapper.h | 2 +- .../AccelByteUe4Sdk/Private/Core/AccelByteMessagingSystem.cpp | 2 +- .../Private/Core/AccelByteNotificationBuffer.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Core/AccelByteWebSocket.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Core/FUnrealWebSocketFactory.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Core/Version.cpp | 2 +- Source/AccelByteUe4Sdk/Private/Core/Version.h | 2 +- .../Private/GameServerApi/AccelByteServerInventoryApi.cpp | 2 +- .../Private/GameServerApi/AccelByteServerMatchmakingV2Api.cpp | 2 +- .../Private/GameServerApi/AccelByteServerSessionApi.cpp | 2 +- .../Private/GameServerApi/AccelByteServerSessionBrowserApi.cpp | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteAMSApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteChallengeApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteConfigurationsApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteInventoryApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteLoginQueueApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteMatchmakingV2Api.h | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteRewardApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteSeasonPassApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteSessionApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteUGCApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Api/AccelByteUserApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Blueprints/ABGroup.h | 2 +- Source/AccelByteUe4Sdk/Public/Blueprints/ABUser.h | 2 +- Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteBPApiClient.h | 2 +- Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteBPLobby.h | 2 +- .../Public/Blueprints/AccelByteInstanceBlueprints.h | 2 +- Source/AccelByteUe4Sdk/Public/Core/AccelByteDefines.h | 2 +- .../Public/Core/AccelByteEntitlementTokenGenerator.h | 2 +- Source/AccelByteUe4Sdk/Public/Core/AccelByteInstance.h | 2 +- Source/AccelByteUe4Sdk/Public/Core/AccelByteLockableQueue.h | 2 +- Source/AccelByteUe4Sdk/Public/Core/AccelByteMessagingSystem.h | 2 +- .../AccelByteUe4Sdk/Public/Core/AccelByteNotificationBuffer.h | 2 +- Source/AccelByteUe4Sdk/Public/Core/AccelByteWebSocket.h | 2 +- Source/AccelByteUe4Sdk/Public/Core/FUnrealWebSocketFactory.h | 2 +- Source/AccelByteUe4Sdk/Public/Core/IAccelByteTokenGenerator.h | 2 +- Source/AccelByteUe4Sdk/Public/Core/IWebSocketFactory.h | 2 +- .../Public/Core/Platform/AccelBytePlatformHandleModels.h | 2 +- .../Public/Core/Platform/IAccelBytePlatformWrapper.h | 2 +- .../Public/GameServerApi/AccelByteServerMatchmakingV2Api.h | 2 +- .../Public/GameServerApi/AccelByteServerSessionApi.h | 2 +- .../Public/GameServerApi/AccelByteServerSessionBrowserApi.h | 2 +- Source/AccelByteUe4Sdk/Public/Models/AccelByteAMSModels.h | 2 +- Source/AccelByteUe4Sdk/Public/Models/AccelByteChallengeModels.h | 2 +- .../Public/Models/AccelByteConfigurationsModels.h | 2 +- Source/AccelByteUe4Sdk/Public/Models/AccelByteInventoryModels.h | 2 +- .../Public/Models/AccelByteMessagingSystemModels.h | 2 +- .../AccelByteUe4Sdk/Public/Models/AccelByteSeasonPassModels.h | 2 +- Source/AccelByteUe4Sdk/Public/Models/AccelByteSessionModels.h | 2 +- Source/AccelByteUe4Sdk/Public/Models/AccelByteUGCModels.h | 2 +- 65 files changed, 65 insertions(+), 65 deletions(-) diff --git a/Source/AccelByteUe4Sdk/Private/Api/AccelByteAMSApi.cpp b/Source/AccelByteUe4Sdk/Private/Api/AccelByteAMSApi.cpp index b6797a1b..a3714a4a 100644 --- a/Source/AccelByteUe4Sdk/Private/Api/AccelByteAMSApi.cpp +++ b/Source/AccelByteUe4Sdk/Private/Api/AccelByteAMSApi.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Api/AccelByteChallengeApi.cpp b/Source/AccelByteUe4Sdk/Private/Api/AccelByteChallengeApi.cpp index 754db599..299ef417 100644 --- a/Source/AccelByteUe4Sdk/Private/Api/AccelByteChallengeApi.cpp +++ b/Source/AccelByteUe4Sdk/Private/Api/AccelByteChallengeApi.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Api/AccelByteConfigurationsApi.cpp b/Source/AccelByteUe4Sdk/Private/Api/AccelByteConfigurationsApi.cpp index 1669c18e..48bb4bd6 100644 --- a/Source/AccelByteUe4Sdk/Private/Api/AccelByteConfigurationsApi.cpp +++ b/Source/AccelByteUe4Sdk/Private/Api/AccelByteConfigurationsApi.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Api/AccelByteMatchmakingV2Api.cpp b/Source/AccelByteUe4Sdk/Private/Api/AccelByteMatchmakingV2Api.cpp index df955e92..8400db31 100644 --- a/Source/AccelByteUe4Sdk/Private/Api/AccelByteMatchmakingV2Api.cpp +++ b/Source/AccelByteUe4Sdk/Private/Api/AccelByteMatchmakingV2Api.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Api/AccelByteRewardApi.cpp b/Source/AccelByteUe4Sdk/Private/Api/AccelByteRewardApi.cpp index 9614ad54..98427455 100644 --- a/Source/AccelByteUe4Sdk/Private/Api/AccelByteRewardApi.cpp +++ b/Source/AccelByteUe4Sdk/Private/Api/AccelByteRewardApi.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Api/AccelByteSeasonPassApi.cpp b/Source/AccelByteUe4Sdk/Private/Api/AccelByteSeasonPassApi.cpp index 1202e483..fbd25e98 100644 --- a/Source/AccelByteUe4Sdk/Private/Api/AccelByteSeasonPassApi.cpp +++ b/Source/AccelByteUe4Sdk/Private/Api/AccelByteSeasonPassApi.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Api/AccelByteSessionApi.cpp b/Source/AccelByteUe4Sdk/Private/Api/AccelByteSessionApi.cpp index bb0e6e2f..92a0549e 100644 --- a/Source/AccelByteUe4Sdk/Private/Api/AccelByteSessionApi.cpp +++ b/Source/AccelByteUe4Sdk/Private/Api/AccelByteSessionApi.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Blueprints/ABGroup.cpp b/Source/AccelByteUe4Sdk/Private/Blueprints/ABGroup.cpp index 8a3b9e68..cfa0a464 100644 --- a/Source/AccelByteUe4Sdk/Private/Blueprints/ABGroup.cpp +++ b/Source/AccelByteUe4Sdk/Private/Blueprints/ABGroup.cpp @@ -1,4 +1,4 @@ -#include "Blueprints/ABGroup.h" +#include "Blueprints/ABGroup.h" using namespace AccelByte; diff --git a/Source/AccelByteUe4Sdk/Private/Blueprints/ABUser.cpp b/Source/AccelByteUe4Sdk/Private/Blueprints/ABUser.cpp index a0c01d51..e238e3aa 100644 --- a/Source/AccelByteUe4Sdk/Private/Blueprints/ABUser.cpp +++ b/Source/AccelByteUe4Sdk/Private/Blueprints/ABUser.cpp @@ -1,4 +1,4 @@ -#include "Blueprints/ABUser.h" +#include "Blueprints/ABUser.h" #include "JsonUtilities.h" using namespace AccelByte; diff --git a/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteBPApiClient.cpp b/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteBPApiClient.cpp index 8068e4bb..29c43511 100644 --- a/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteBPApiClient.cpp +++ b/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteBPApiClient.cpp @@ -1,4 +1,4 @@ -#include "Blueprints/AccelByteBPApiClient.h" +#include "Blueprints/AccelByteBPApiClient.h" using namespace AccelByte; diff --git a/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteBPLobby.cpp b/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteBPLobby.cpp index 9a7a2a83..a37859b9 100644 --- a/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteBPLobby.cpp +++ b/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteBPLobby.cpp @@ -1,4 +1,4 @@ -#include "Blueprints/AccelByteBPLobby.h" +#include "Blueprints/AccelByteBPLobby.h" using namespace AccelByte; diff --git a/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteInstanceBlueprints.cpp b/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteInstanceBlueprints.cpp index 22afa870..5f6be42b 100644 --- a/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteInstanceBlueprints.cpp +++ b/Source/AccelByteUe4Sdk/Private/Blueprints/AccelByteInstanceBlueprints.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte, Inc. All rights reserved. +// Copyright (c) 2024 AccelByte, Inc. All rights reserved. // This is licensed software from Accelbyte Inc, for limitations // and restrictions contact your company contract manager diff --git a/Source/AccelByteUe4Sdk/Private/Core/AccelByteEntitlementTokenGenerator.cpp b/Source/AccelByteUe4Sdk/Private/Core/AccelByteEntitlementTokenGenerator.cpp index ac60bbdd..36079342 100644 --- a/Source/AccelByteUe4Sdk/Private/Core/AccelByteEntitlementTokenGenerator.cpp +++ b/Source/AccelByteUe4Sdk/Private/Core/AccelByteEntitlementTokenGenerator.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Core/AccelByteInstance.cpp b/Source/AccelByteUe4Sdk/Private/Core/AccelByteInstance.cpp index a4220778..945066a1 100644 --- a/Source/AccelByteUe4Sdk/Private/Core/AccelByteInstance.cpp +++ b/Source/AccelByteUe4Sdk/Private/Core/AccelByteInstance.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Core/AccelByteJwtWrapper.cpp b/Source/AccelByteUe4Sdk/Private/Core/AccelByteJwtWrapper.cpp index 7a9a4939..267899db 100644 --- a/Source/AccelByteUe4Sdk/Private/Core/AccelByteJwtWrapper.cpp +++ b/Source/AccelByteUe4Sdk/Private/Core/AccelByteJwtWrapper.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Core/AccelByteJwtWrapper.h b/Source/AccelByteUe4Sdk/Private/Core/AccelByteJwtWrapper.h index bbdb4d62..89898d98 100644 --- a/Source/AccelByteUe4Sdk/Private/Core/AccelByteJwtWrapper.h +++ b/Source/AccelByteUe4Sdk/Private/Core/AccelByteJwtWrapper.h @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Core/AccelByteMessagingSystem.cpp b/Source/AccelByteUe4Sdk/Private/Core/AccelByteMessagingSystem.cpp index 03e5eb88..473bb903 100644 --- a/Source/AccelByteUe4Sdk/Private/Core/AccelByteMessagingSystem.cpp +++ b/Source/AccelByteUe4Sdk/Private/Core/AccelByteMessagingSystem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2025 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2025 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Core/AccelByteNotificationBuffer.cpp b/Source/AccelByteUe4Sdk/Private/Core/AccelByteNotificationBuffer.cpp index b13f21d2..94e658bd 100644 --- a/Source/AccelByteUe4Sdk/Private/Core/AccelByteNotificationBuffer.cpp +++ b/Source/AccelByteUe4Sdk/Private/Core/AccelByteNotificationBuffer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Core/AccelByteWebSocket.cpp b/Source/AccelByteUe4Sdk/Private/Core/AccelByteWebSocket.cpp index 59f5ab9d..292e2139 100644 --- a/Source/AccelByteUe4Sdk/Private/Core/AccelByteWebSocket.cpp +++ b/Source/AccelByteUe4Sdk/Private/Core/AccelByteWebSocket.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Core/FUnrealWebSocketFactory.cpp b/Source/AccelByteUe4Sdk/Private/Core/FUnrealWebSocketFactory.cpp index d571536f..f9af9bb5 100644 --- a/Source/AccelByteUe4Sdk/Private/Core/FUnrealWebSocketFactory.cpp +++ b/Source/AccelByteUe4Sdk/Private/Core/FUnrealWebSocketFactory.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Core/Version.cpp b/Source/AccelByteUe4Sdk/Private/Core/Version.cpp index 7b16eed9..3a6df18f 100644 --- a/Source/AccelByteUe4Sdk/Private/Core/Version.cpp +++ b/Source/AccelByteUe4Sdk/Private/Core/Version.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/Core/Version.h b/Source/AccelByteUe4Sdk/Private/Core/Version.h index 541e9291..00315a16 100644 --- a/Source/AccelByteUe4Sdk/Private/Core/Version.h +++ b/Source/AccelByteUe4Sdk/Private/Core/Version.h @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerInventoryApi.cpp b/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerInventoryApi.cpp index 54796a77..b2c07c5b 100644 --- a/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerInventoryApi.cpp +++ b/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerInventoryApi.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerMatchmakingV2Api.cpp b/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerMatchmakingV2Api.cpp index b32b1fdf..1b034f67 100644 --- a/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerMatchmakingV2Api.cpp +++ b/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerMatchmakingV2Api.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerSessionApi.cpp b/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerSessionApi.cpp index 30fdf2f0..0f6cfa7a 100644 --- a/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerSessionApi.cpp +++ b/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerSessionApi.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerSessionBrowserApi.cpp b/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerSessionBrowserApi.cpp index ef2de0d4..3230ceae 100644 --- a/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerSessionBrowserApi.cpp +++ b/Source/AccelByteUe4Sdk/Private/GameServerApi/AccelByteServerSessionBrowserApi.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteAMSApi.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteAMSApi.h index 9ef64526..a5fbc675 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteAMSApi.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteAMSApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteChallengeApi.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteChallengeApi.h index 7ef7c280..c9dda61b 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteChallengeApi.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteChallengeApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteConfigurationsApi.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteConfigurationsApi.h index 5ce545d3..e4634efd 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteConfigurationsApi.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteConfigurationsApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteInventoryApi.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteInventoryApi.h index 2ff7da5a..fbde9349 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteInventoryApi.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteInventoryApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2023 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteLoginQueueApi.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteLoginQueueApi.h index d7e81e4a..4d83b106 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteLoginQueueApi.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteLoginQueueApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteMatchmakingV2Api.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteMatchmakingV2Api.h index ea449aaf..7fd14eba 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteMatchmakingV2Api.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteMatchmakingV2Api.h @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteRewardApi.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteRewardApi.h index 9c999146..e8b81e0f 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteRewardApi.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteRewardApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteSeasonPassApi.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteSeasonPassApi.h index 916a7d11..91a6ea00 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteSeasonPassApi.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteSeasonPassApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteSessionApi.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteSessionApi.h index 54f08355..d3a5c2fa 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteSessionApi.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteSessionApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteUGCApi.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteUGCApi.h index e8569784..342768d9 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteUGCApi.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteUGCApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Api/AccelByteUserApi.h b/Source/AccelByteUe4Sdk/Public/Api/AccelByteUserApi.h index 9b7b735e..368068e1 100644 --- a/Source/AccelByteUe4Sdk/Public/Api/AccelByteUserApi.h +++ b/Source/AccelByteUe4Sdk/Public/Api/AccelByteUserApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2018-2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2018-2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Blueprints/ABGroup.h b/Source/AccelByteUe4Sdk/Public/Blueprints/ABGroup.h index 247a5ded..d698244a 100644 --- a/Source/AccelByteUe4Sdk/Public/Blueprints/ABGroup.h +++ b/Source/AccelByteUe4Sdk/Public/Blueprints/ABGroup.h @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Blueprints/ABUser.h b/Source/AccelByteUe4Sdk/Public/Blueprints/ABUser.h index 2c9c2322..15123cd0 100644 --- a/Source/AccelByteUe4Sdk/Public/Blueprints/ABUser.h +++ b/Source/AccelByteUe4Sdk/Public/Blueprints/ABUser.h @@ -1,4 +1,4 @@ -#pragma once +#pragma once #include "CoreMinimal.h" #include "Core/AccelByteError.h" diff --git a/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteBPApiClient.h b/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteBPApiClient.h index 91a3ee42..bd658591 100644 --- a/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteBPApiClient.h +++ b/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteBPApiClient.h @@ -1,4 +1,4 @@ -#pragma once +#pragma once #include "CoreMinimal.h" #include "ABUser.h" diff --git a/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteBPLobby.h b/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteBPLobby.h index 4b962ed9..739eed88 100644 --- a/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteBPLobby.h +++ b/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteBPLobby.h @@ -1,4 +1,4 @@ -#pragma once +#pragma once #include "CoreMinimal.h" #include "Core/AccelByteApiClient.h" diff --git a/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteInstanceBlueprints.h b/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteInstanceBlueprints.h index 24bcf879..2ea64e74 100644 --- a/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteInstanceBlueprints.h +++ b/Source/AccelByteUe4Sdk/Public/Blueprints/AccelByteInstanceBlueprints.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte, Inc. All rights reserved. +// Copyright (c) 2024 AccelByte, Inc. All rights reserved. // This is licensed software from Accelbyte Inc, for limitations // and restrictions contact your company contract manager diff --git a/Source/AccelByteUe4Sdk/Public/Core/AccelByteDefines.h b/Source/AccelByteUe4Sdk/Public/Core/AccelByteDefines.h index 8c6caa62..b4ae4ae9 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/AccelByteDefines.h +++ b/Source/AccelByteUe4Sdk/Public/Core/AccelByteDefines.h @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/AccelByteEntitlementTokenGenerator.h b/Source/AccelByteUe4Sdk/Public/Core/AccelByteEntitlementTokenGenerator.h index 8a1dc53d..a7a89adb 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/AccelByteEntitlementTokenGenerator.h +++ b/Source/AccelByteUe4Sdk/Public/Core/AccelByteEntitlementTokenGenerator.h @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/AccelByteInstance.h b/Source/AccelByteUe4Sdk/Public/Core/AccelByteInstance.h index 14781dfb..e80bdae6 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/AccelByteInstance.h +++ b/Source/AccelByteUe4Sdk/Public/Core/AccelByteInstance.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/AccelByteLockableQueue.h b/Source/AccelByteUe4Sdk/Public/Core/AccelByteLockableQueue.h index f861e0e0..998ad7ae 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/AccelByteLockableQueue.h +++ b/Source/AccelByteUe4Sdk/Public/Core/AccelByteLockableQueue.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/AccelByteMessagingSystem.h b/Source/AccelByteUe4Sdk/Public/Core/AccelByteMessagingSystem.h index 85f47bd5..934f0a65 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/AccelByteMessagingSystem.h +++ b/Source/AccelByteUe4Sdk/Public/Core/AccelByteMessagingSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2023 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/AccelByteNotificationBuffer.h b/Source/AccelByteUe4Sdk/Public/Core/AccelByteNotificationBuffer.h index be2a6451..371b19a4 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/AccelByteNotificationBuffer.h +++ b/Source/AccelByteUe4Sdk/Public/Core/AccelByteNotificationBuffer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/AccelByteWebSocket.h b/Source/AccelByteUe4Sdk/Public/Core/AccelByteWebSocket.h index 1a5c4551..4b601ec9 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/AccelByteWebSocket.h +++ b/Source/AccelByteUe4Sdk/Public/Core/AccelByteWebSocket.h @@ -1,4 +1,4 @@ -// Copyright (c) 2021 - 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 - 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/FUnrealWebSocketFactory.h b/Source/AccelByteUe4Sdk/Public/Core/FUnrealWebSocketFactory.h index 15f1b8b1..f3b87027 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/FUnrealWebSocketFactory.h +++ b/Source/AccelByteUe4Sdk/Public/Core/FUnrealWebSocketFactory.h @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/IAccelByteTokenGenerator.h b/Source/AccelByteUe4Sdk/Public/Core/IAccelByteTokenGenerator.h index ba48cdbd..f6c57163 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/IAccelByteTokenGenerator.h +++ b/Source/AccelByteUe4Sdk/Public/Core/IAccelByteTokenGenerator.h @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/IWebSocketFactory.h b/Source/AccelByteUe4Sdk/Public/Core/IWebSocketFactory.h index 23e67a93..b928cbfd 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/IWebSocketFactory.h +++ b/Source/AccelByteUe4Sdk/Public/Core/IWebSocketFactory.h @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/Platform/AccelBytePlatformHandleModels.h b/Source/AccelByteUe4Sdk/Public/Core/Platform/AccelBytePlatformHandleModels.h index 65abb0a3..029ec666 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/Platform/AccelBytePlatformHandleModels.h +++ b/Source/AccelByteUe4Sdk/Public/Core/Platform/AccelBytePlatformHandleModels.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Core/Platform/IAccelBytePlatformWrapper.h b/Source/AccelByteUe4Sdk/Public/Core/Platform/IAccelBytePlatformWrapper.h index 5d9d2a0a..6d7c76b9 100644 --- a/Source/AccelByteUe4Sdk/Public/Core/Platform/IAccelBytePlatformWrapper.h +++ b/Source/AccelByteUe4Sdk/Public/Core/Platform/IAccelBytePlatformWrapper.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerMatchmakingV2Api.h b/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerMatchmakingV2Api.h index d33f2837..2dd6f2e6 100644 --- a/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerMatchmakingV2Api.h +++ b/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerMatchmakingV2Api.h @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerSessionApi.h b/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerSessionApi.h index c1c0e7a6..15127ebb 100644 --- a/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerSessionApi.h +++ b/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerSessionApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerSessionBrowserApi.h b/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerSessionBrowserApi.h index a87af67f..2e26b312 100644 --- a/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerSessionBrowserApi.h +++ b/Source/AccelByteUe4Sdk/Public/GameServerApi/AccelByteServerSessionBrowserApi.h @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Models/AccelByteAMSModels.h b/Source/AccelByteUe4Sdk/Public/Models/AccelByteAMSModels.h index 731958c3..66e0eb1b 100644 --- a/Source/AccelByteUe4Sdk/Public/Models/AccelByteAMSModels.h +++ b/Source/AccelByteUe4Sdk/Public/Models/AccelByteAMSModels.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Models/AccelByteChallengeModels.h b/Source/AccelByteUe4Sdk/Public/Models/AccelByteChallengeModels.h index ef2d0f20..516a3c9f 100644 --- a/Source/AccelByteUe4Sdk/Public/Models/AccelByteChallengeModels.h +++ b/Source/AccelByteUe4Sdk/Public/Models/AccelByteChallengeModels.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Models/AccelByteConfigurationsModels.h b/Source/AccelByteUe4Sdk/Public/Models/AccelByteConfigurationsModels.h index 67bc9b53..c356f12d 100644 --- a/Source/AccelByteUe4Sdk/Public/Models/AccelByteConfigurationsModels.h +++ b/Source/AccelByteUe4Sdk/Public/Models/AccelByteConfigurationsModels.h @@ -1,4 +1,4 @@ -// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Models/AccelByteInventoryModels.h b/Source/AccelByteUe4Sdk/Public/Models/AccelByteInventoryModels.h index e21e3531..22743e79 100644 --- a/Source/AccelByteUe4Sdk/Public/Models/AccelByteInventoryModels.h +++ b/Source/AccelByteUe4Sdk/Public/Models/AccelByteInventoryModels.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2023 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Models/AccelByteMessagingSystemModels.h b/Source/AccelByteUe4Sdk/Public/Models/AccelByteMessagingSystemModels.h index 860705aa..ceb174a3 100644 --- a/Source/AccelByteUe4Sdk/Public/Models/AccelByteMessagingSystemModels.h +++ b/Source/AccelByteUe4Sdk/Public/Models/AccelByteMessagingSystemModels.h @@ -1,4 +1,4 @@ -// Copyright (c) 2023 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2023 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Models/AccelByteSeasonPassModels.h b/Source/AccelByteUe4Sdk/Public/Models/AccelByteSeasonPassModels.h index fbb37104..7e174ebe 100644 --- a/Source/AccelByteUe4Sdk/Public/Models/AccelByteSeasonPassModels.h +++ b/Source/AccelByteUe4Sdk/Public/Models/AccelByteSeasonPassModels.h @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Models/AccelByteSessionModels.h b/Source/AccelByteUe4Sdk/Public/Models/AccelByteSessionModels.h index e333bc9a..5dae118c 100644 --- a/Source/AccelByteUe4Sdk/Public/Models/AccelByteSessionModels.h +++ b/Source/AccelByteUe4Sdk/Public/Models/AccelByteSessionModels.h @@ -1,4 +1,4 @@ -// Copyright (c) 2022 -2024 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2022 -2024 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager. diff --git a/Source/AccelByteUe4Sdk/Public/Models/AccelByteUGCModels.h b/Source/AccelByteUe4Sdk/Public/Models/AccelByteUGCModels.h index 489cb11c..b6d392f1 100644 --- a/Source/AccelByteUe4Sdk/Public/Models/AccelByteUGCModels.h +++ b/Source/AccelByteUe4Sdk/Public/Models/AccelByteUGCModels.h @@ -1,4 +1,4 @@ -// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. +// Copyright (c) 2021 AccelByte Inc. All Rights Reserved. // This is licensed software from AccelByte Inc, for limitations // and restrictions contact your company contract manager.