From 4b9ad51b8915a04dcfd9e57a4ea0951fda7b0493 Mon Sep 17 00:00:00 2001 From: Kia Armani Date: Sat, 7 Oct 2023 19:27:59 +0200 Subject: [PATCH] fix: Fixed broken include paths in Unreal Engine plugin. --- .../unreal/Agones/Source/Agones/Private/AgonesComponent.cpp | 6 +++--- sdks/unreal/Agones/Source/Agones/Public/AgonesComponent.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sdks/unreal/Agones/Source/Agones/Private/AgonesComponent.cpp b/sdks/unreal/Agones/Source/Agones/Private/AgonesComponent.cpp index 7ea2c0a009..66b34cf868 100644 --- a/sdks/unreal/Agones/Source/Agones/Private/AgonesComponent.cpp +++ b/sdks/unreal/Agones/Source/Agones/Private/AgonesComponent.cpp @@ -17,10 +17,10 @@ #include "Engine/World.h" #include "HttpModule.h" #include "Interfaces/IHttpResponse.h" -#include "JsonUtilities/Public/JsonObjectConverter.h" +#include "JsonObjectConverter.h" #include "TimerManager.h" -#include "WebSockets/Public/IWebSocket.h" -#include "WebSockets/Public/WebSocketsModule.h" +#include "IWebSocket.h" +#include "WebSocketsModule.h" DEFINE_LOG_CATEGORY_STATIC(LogAgones, Log, Log); diff --git a/sdks/unreal/Agones/Source/Agones/Public/AgonesComponent.h b/sdks/unreal/Agones/Source/Agones/Public/AgonesComponent.h index 861b8875b8..db7164677b 100644 --- a/sdks/unreal/Agones/Source/Agones/Public/AgonesComponent.h +++ b/sdks/unreal/Agones/Source/Agones/Public/AgonesComponent.h @@ -18,7 +18,7 @@ #include "Components/ActorComponent.h" #include "CoreMinimal.h" #include "Interfaces/IHttpRequest.h" -#include "WebSockets/Public/IWebSocket.h" +#include "IWebSocket.h" #include "AgonesComponent.generated.h"