Logo
Explore Help
Sign In
izzy/UnrealEngineUWP
0
0
Fork 0
You've already forked UnrealEngineUWP
mirror of https://github.com/izzy2lost/UnrealEngineUWP.git synced 2026-03-26 18:15:20 -07:00
Code Issues Packages Projects Releases Wiki Activity
Files
eba4f3ca9964ec00a092674fed56527f5be58894
UnrealEngineUWP/Engine/Source/Runtime/AppFramework/Private/AppFrameworkModule.cpp

30 lines
454 B
C++
Raw Normal View History

Slate: Moved TestSuite and ColorPicker into new module AppFramework The AppFramework module is intended to be used for compound widgets and UI related classes that are too specific (not basic enough) for Slate, but also not Editor specific (reusable in non-Editor applications and games). The test suite has been moved in its entirety for now, but core widget specific test classes will eventually be split off and moved back into Slate, so that they can live alongside of their corresponding widgets. Other changes: - moved to "include what you use" scheme for SColorPicker - broke out color picker related widgets that may be reusable - added forward declarations to reduce header include dependencies #CodeReview: saul.abreu [CL 2275496 by Max Preussner in Main branch]
2014-08-27 20:35:19 -04:00
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "AppFrameworkPrivatePCH.h"
static const FName AppFrameworkTabName("AppFramework");
/**
* Implements the AppFramework module.
*/
class FAppFrameworkModule
: public IModuleInterface
{
public:
// IModuleInterface interface
virtual void StartupModule( ) override
{
}
virtual void ShutdownModule( ) override
{
}
};
IMPLEMENT_MODULE(FAppFrameworkModule, AppFramework);
Reference in New Issue Copy Permalink
Powered by Gitea Page: 367ms Template: 19ms
English
English
Licenses API