Engine source (Main branch up to CL 2026164)

This commit is contained in:
Tim Sweeney
2014-03-14 14:13:41 -04:00
commit 324683ce78
10199 changed files with 3908382 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "ModuleUIPrivatePCH.h"
/**
* Implementation of the ModuleUI system
*/
class FModuleUI
: public IModuleUIInterface
{
public:
/** IModuleInterface implementation */
virtual void StartupModule() OVERRIDE;
virtual void ShutdownModule() OVERRIDE;
/** IModuleUIInterface implementation */
virtual TSharedRef< SWidget > GetModuleUIWidget();
private:
};
IMPLEMENT_MODULE( FModuleUI, ModuleUI );
void FModuleUI::StartupModule()
{
}
void FModuleUI::ShutdownModule()
{
}
TSharedRef< SWidget > FModuleUI::GetModuleUIWidget()
{
return SNew( SModuleUI );
}