搬了lyra的hudlayout
This commit is contained in:
32
Plugins/CommonGame/Source/Private/CommonGameModule.cpp
Normal file
32
Plugins/CommonGame/Source/Private/CommonGameModule.cpp
Normal file
@@ -0,0 +1,32 @@
|
||||
// Copyright Epic Games, Inc. All Rights Reserved.
|
||||
|
||||
#include "Modules/ModuleManager.h"
|
||||
|
||||
/**
|
||||
* Implements the FCommonGameModule module.
|
||||
*/
|
||||
class FCommonGameModule : public IModuleInterface
|
||||
{
|
||||
public:
|
||||
FCommonGameModule();
|
||||
virtual void StartupModule() override;
|
||||
virtual void ShutdownModule() override;
|
||||
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
|
||||
FCommonGameModule::FCommonGameModule()
|
||||
{
|
||||
}
|
||||
|
||||
void FCommonGameModule::StartupModule()
|
||||
{
|
||||
}
|
||||
|
||||
void FCommonGameModule::ShutdownModule()
|
||||
{
|
||||
}
|
||||
|
||||
IMPLEMENT_MODULE(FCommonGameModule, CommonGame);
|
||||
Reference in New Issue
Block a user