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;