mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 08:02:23 -07:00
First Submit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
#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::RegiterAllLogCategories();
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------------------------------
|
||||
void FCogSampleModule::ShutdownModule()
|
||||
{
|
||||
}
|
||||
|
||||
#undef LOCTEXT_NAMESPACE
|
||||
|
||||
IMPLEMENT_PRIMARY_GAME_MODULE(FCogSampleModule, CogSample, "CogSample");
|
||||
Reference in New Issue
Block a user