Skip to content

Commit

Permalink
fix: Fixed broken include paths in Unreal Engine plugin. (#3416)
Browse files Browse the repository at this point in the history
  • Loading branch information
KiaArmani authored Oct 11, 2023
1 parent e0f859a commit 2003e67
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions sdks/unreal/Agones/Source/Agones/Private/AgonesComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion sdks/unreal/Agones/Source/Agones/Public/AgonesComponent.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 2003e67

Please sign in to comment.