You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* 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]
15 lines
317 B
C++
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)
|