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

13 lines
282 B
C++

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