From 5f26d8e5878c521d14334dd0134df6173996ff2e Mon Sep 17 00:00:00 2001 From: Jamie Greunbaum Date: Wed, 5 Apr 2023 00:32:37 -0400 Subject: [PATCH] Reorganised some files. --- .../Unrealzilla/{Public => Private}/API/JiraJSONStructs.h | 0 .../{Public => Private}/API/UnrealzillaBugDataStructs.h | 0 Source/Unrealzilla/Private/BugPlacerPawn.cpp | 3 +-- Source/Unrealzilla/Private/BugSubmissionForm.cpp | 1 - Source/Unrealzilla/Public/BugSubmissionForm.h | 1 - Source/Unrealzilla/Unrealzilla.Build.cs | 8 ++++---- 6 files changed, 5 insertions(+), 8 deletions(-) rename Source/Unrealzilla/{Public => Private}/API/JiraJSONStructs.h (100%) rename Source/Unrealzilla/{Public => Private}/API/UnrealzillaBugDataStructs.h (100%) diff --git a/Source/Unrealzilla/Public/API/JiraJSONStructs.h b/Source/Unrealzilla/Private/API/JiraJSONStructs.h similarity index 100% rename from Source/Unrealzilla/Public/API/JiraJSONStructs.h rename to Source/Unrealzilla/Private/API/JiraJSONStructs.h diff --git a/Source/Unrealzilla/Public/API/UnrealzillaBugDataStructs.h b/Source/Unrealzilla/Private/API/UnrealzillaBugDataStructs.h similarity index 100% rename from Source/Unrealzilla/Public/API/UnrealzillaBugDataStructs.h rename to Source/Unrealzilla/Private/API/UnrealzillaBugDataStructs.h diff --git a/Source/Unrealzilla/Private/BugPlacerPawn.cpp b/Source/Unrealzilla/Private/BugPlacerPawn.cpp index 51a5ff6..589d8e0 100644 --- a/Source/Unrealzilla/Private/BugPlacerPawn.cpp +++ b/Source/Unrealzilla/Private/BugPlacerPawn.cpp @@ -4,13 +4,12 @@ #include "BugMarkerActor.h" #include "BugMarkerSubsystem.h" +#include "EngineUtils.h" #include "ExitingBugPlacementScreen.h" #include "UnrealzillaGlobalSettings.h" -#include "BugzillaJSONStructs.h" #include "Components/MaterialBillboardComponent.h" #include "Components/SphereComponent.h" -#include "EngineUtils.h" #include "GameFramework/Character.h" #include "GameFramework/FloatingPawnMovement.h" #include "HAL/IConsoleManager.h" diff --git a/Source/Unrealzilla/Private/BugSubmissionForm.cpp b/Source/Unrealzilla/Private/BugSubmissionForm.cpp index 347dd63..9c0e3f7 100644 --- a/Source/Unrealzilla/Private/BugSubmissionForm.cpp +++ b/Source/Unrealzilla/Private/BugSubmissionForm.cpp @@ -3,7 +3,6 @@ #include "BugSubmissionForm.h" #include "BugMarkerActor.h" -//#include "BugPlacerPawn.h" #include "BugMarkerSubsystem.h" #include "CommonButtonBase.h" #include "CommonTextBlock.h" diff --git a/Source/Unrealzilla/Public/BugSubmissionForm.h b/Source/Unrealzilla/Public/BugSubmissionForm.h index e364f1e..e10adbb 100644 --- a/Source/Unrealzilla/Public/BugSubmissionForm.h +++ b/Source/Unrealzilla/Public/BugSubmissionForm.h @@ -6,7 +6,6 @@ #include "BugFormButton.h" #include "CommonActivatableWidget.h" -#include "BugzillaJSONStructs.h" #include "Interfaces/IHttpRequest.h" #include "Interfaces/IHttpResponse.h" diff --git a/Source/Unrealzilla/Unrealzilla.Build.cs b/Source/Unrealzilla/Unrealzilla.Build.cs index 997d8b5..0295921 100644 --- a/Source/Unrealzilla/Unrealzilla.Build.cs +++ b/Source/Unrealzilla/Unrealzilla.Build.cs @@ -31,7 +31,9 @@ namespace UnrealBuildTool.Rules "CoreUObject", "Engine", "InputCore", - "DeveloperSettings" + "DeveloperSettings", + "UMG", + "CommonUI" } ); @@ -40,9 +42,7 @@ namespace UnrealBuildTool.Rules { "HTTP", "Json", - "JsonUtilities", - "UMG", - "CommonUI" + "JsonUtilities" } ); }