From bf6c7cb371b1ee2f6a2938e2d1eef04bbef37d3c Mon Sep 17 00:00:00 2001 From: Arnaud Jamin Date: Thu, 13 Feb 2025 00:50:00 -0500 Subject: [PATCH] Fix Cog module name --- Plugins/Cog/Source/Cog/Private/CogModule.cpp | 2 +- Plugins/Cog/Source/Cog/Public/CogModule.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Cog/Source/Cog/Private/CogModule.cpp b/Plugins/Cog/Source/Cog/Private/CogModule.cpp index 7c09c05..fbc5df2 100644 --- a/Plugins/Cog/Source/Cog/Private/CogModule.cpp +++ b/Plugins/Cog/Source/Cog/Private/CogModule.cpp @@ -14,4 +14,4 @@ void FCogModule::ShutdownModule() #undef LOCTEXT_NAMESPACE -IMPLEMENT_MODULE(FCogModule, CogWindow) \ No newline at end of file +IMPLEMENT_MODULE(FCogModule, Cog) \ No newline at end of file diff --git a/Plugins/Cog/Source/Cog/Public/CogModule.h b/Plugins/Cog/Source/Cog/Public/CogModule.h index d82413d..712cd8d 100644 --- a/Plugins/Cog/Source/Cog/Public/CogModule.h +++ b/Plugins/Cog/Source/Cog/Public/CogModule.h @@ -7,7 +7,7 @@ class COG_API FCogModule : public IModuleInterface { public: - static inline FCogModule& Get() { return FModuleManager::LoadModuleChecked("CogWindow"); } + static inline FCogModule& Get() { return FModuleManager::LoadModuleChecked("Cog"); } virtual void StartupModule() override;