From f4f62613ca4fe48b6bd5ddd5357e878661d8b565 Mon Sep 17 00:00:00 2001 From: jyelon Date: Thu, 7 Sep 2023 03:57:29 -0400 Subject: [PATCH] Changed filenames of the luprex headers --- Source/Integration/IntegrationGameModeBase.cpp | 2 +- Source/Integration/IntegrationGameModeBase.h | 2 +- Source/Integration/LockedWrapper.cpp | 2 +- Source/Integration/LockedWrapper.h | 2 +- Source/Integration/LuprexSockets.cpp | 4 ++-- Source/Integration/lpx-basewriter.hpp | 1 + Source/Integration/{drvutil.cpp => lpx-drvutil.cpp} | 0 Source/Integration/{drvutil.hpp => lpx-drvutil.hpp} | 0 .../Integration/{enginewrapper.hpp => lpx-enginewrapper.hpp} | 0 9 files changed, 7 insertions(+), 6 deletions(-) create mode 100644 Source/Integration/lpx-basewriter.hpp rename Source/Integration/{drvutil.cpp => lpx-drvutil.cpp} (100%) rename Source/Integration/{drvutil.hpp => lpx-drvutil.hpp} (100%) rename Source/Integration/{enginewrapper.hpp => lpx-enginewrapper.hpp} (100%) diff --git a/Source/Integration/IntegrationGameModeBase.cpp b/Source/Integration/IntegrationGameModeBase.cpp index 94ed00b5..c5597dfa 100644 --- a/Source/Integration/IntegrationGameModeBase.cpp +++ b/Source/Integration/IntegrationGameModeBase.cpp @@ -1,7 +1,7 @@ // Copyright Epic Games, Inc. All Rights Reserved. #include "IntegrationGameModeBase.h" -#include "drvutil.hpp" +#include "lpx-drvutil.hpp" #include "DebugPrint.h" #include "TangibleManager.h" #include diff --git a/Source/Integration/IntegrationGameModeBase.h b/Source/Integration/IntegrationGameModeBase.h index c621594b..df0c359f 100644 --- a/Source/Integration/IntegrationGameModeBase.h +++ b/Source/Integration/IntegrationGameModeBase.h @@ -4,7 +4,7 @@ #include "CoreMinimal.h" #include "GameFramework/GameModeBase.h" -#include "enginewrapper.hpp" +#include "lpx-enginewrapper.hpp" #include "DebugPrint.h" #include "TangibleManager.h" #include "LuprexSockets.h" diff --git a/Source/Integration/LockedWrapper.cpp b/Source/Integration/LockedWrapper.cpp index 440b2086..28db6c87 100644 --- a/Source/Integration/LockedWrapper.cpp +++ b/Source/Integration/LockedWrapper.cpp @@ -1,7 +1,7 @@ #include "LockedWrapper.h" #include "DebugPrint.h" -#include "drvutil.hpp" +#include "lpx-drvutil.hpp" void FLockedWrapper::InitWrapper() { if (Lockable.Wrapper.play_initialize != nullptr) { diff --git a/Source/Integration/LockedWrapper.h b/Source/Integration/LockedWrapper.h index bf97a79d..c8db921a 100644 --- a/Source/Integration/LockedWrapper.h +++ b/Source/Integration/LockedWrapper.h @@ -1,7 +1,7 @@ #pragma once #include "CoreMinimal.h" -#include "enginewrapper.hpp" +#include "lpx-enginewrapper.hpp" // Class FLockableWrapper // diff --git a/Source/Integration/LuprexSockets.cpp b/Source/Integration/LuprexSockets.cpp index 473bdc03..bf43adc4 100644 --- a/Source/Integration/LuprexSockets.cpp +++ b/Source/Integration/LuprexSockets.cpp @@ -1,7 +1,7 @@ #include "LuprexSockets.h" -#include "enginewrapper.hpp" -#include "drvutil.hpp" +#include "lpx-enginewrapper.hpp" +#include "lpx-drvutil.hpp" #include "DebugPrint.h" #include "Sockets.h" #include "SocketTypes.h" diff --git a/Source/Integration/lpx-basewriter.hpp b/Source/Integration/lpx-basewriter.hpp new file mode 100644 index 00000000..92f52af6 --- /dev/null +++ b/Source/Integration/lpx-basewriter.hpp @@ -0,0 +1 @@ +#include "c:/luprex/ext/base-writer.hpp" \ No newline at end of file diff --git a/Source/Integration/drvutil.cpp b/Source/Integration/lpx-drvutil.cpp similarity index 100% rename from Source/Integration/drvutil.cpp rename to Source/Integration/lpx-drvutil.cpp diff --git a/Source/Integration/drvutil.hpp b/Source/Integration/lpx-drvutil.hpp similarity index 100% rename from Source/Integration/drvutil.hpp rename to Source/Integration/lpx-drvutil.hpp diff --git a/Source/Integration/enginewrapper.hpp b/Source/Integration/lpx-enginewrapper.hpp similarity index 100% rename from Source/Integration/enginewrapper.hpp rename to Source/Integration/lpx-enginewrapper.hpp