Files
Cog/Source/CogSample/CogSampleModule.cpp
Eduardo Valencia 74d43f0b4c Update gitignore for Rider, fix typos
I use Rider as my IDE and when working with Unreal projects it installs a plugin that enable its unique integration. We don't want that being uploaded to the repo so it gets ignored. In addition, The project module has a typo, this commit fixes that
2023-10-18 16:51:12 -04:00

34 lines
960 B
C++

#include "CogSampleModule.h"
#include "CogSampleLogCategories.h"
#include "Modules/ModuleManager.h"
//--------------------------------------------------------------------------------------------------------------------------
class FCogSampleModule : public IModuleInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() override;
virtual void ShutdownModule() override;
private:
};
#define LOCTEXT_NAMESPACE "FCogInputModule"
//--------------------------------------------------------------------------------------------------------------------------
void FCogSampleModule::StartupModule()
{
CogSampleLog::RegisterAllLogCategories();
}
//--------------------------------------------------------------------------------------------------------------------------
void FCogSampleModule::ShutdownModule()
{
}
#undef LOCTEXT_NAMESPACE
IMPLEMENT_PRIMARY_GAME_MODULE(FCogSampleModule, CogSample, "CogSample");