Files
UnrealEngineUWP/Engine/Plugins/Slate/SlateScripting/Source/SlateScriptingCommands/Private/SlateScriptingCommandsModule.cpp
henrik karlsson bbc37aa2f5 [Engine/Plugins]
* Another batch iwyu updates to reduce number of includes used in files

#preflight 63c58d742e714f64ade93797
#rb none

[CL 23732856 by henrik karlsson in ue5-main branch]
2023-01-16 17:04:48 -05:00

15 lines
317 B
C++

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