Files
UnrealEngineUWP/Engine/Plugins/Slate/SlateScripting/Source/SlateScriptingCommands/Private/SlateScriptingCommandsModule.cpp

15 lines
317 B
C++
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#include "SlateScriptingCommandsModule.h"
#include "Modules/ModuleManager.h"
void FSlateScriptingCommandsModule::StartupModule()
{
}
void FSlateScriptingCommandsModule::ShutdownModule()
{
}
IMPLEMENT_MODULE(FSlateScriptingCommandsModule, SlateScriptingCommands)