Fix Cog module name

This commit is contained in:
Arnaud Jamin
2025-02-13 00:50:00 -05:00
parent 32026c29b0
commit bf6c7cb371
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -14,4 +14,4 @@ void FCogModule::ShutdownModule()
#undef LOCTEXT_NAMESPACE
IMPLEMENT_MODULE(FCogModule, CogWindow)
IMPLEMENT_MODULE(FCogModule, Cog)
+1 -1
View File
@@ -7,7 +7,7 @@ class COG_API FCogModule : public IModuleInterface
{
public:
static inline FCogModule& Get() { return FModuleManager::LoadModuleChecked<FCogModule>("CogWindow"); }
static inline FCogModule& Get() { return FModuleManager::LoadModuleChecked<FCogModule>("Cog"); }
virtual void StartupModule() override;