You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb chris.gagnon #jira UETOOL-2769 [CL 15208207 by sebastian nordgren in ue5-main branch]
17 lines
353 B
C++
17 lines
353 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "EditorConfigModule.h"
|
|
#include "EditorConfig.h"
|
|
#include "EditorConfigSubsystem.h"
|
|
#include "EditorMetadataOverrides.h"
|
|
#include "Misc/Paths.h"
|
|
|
|
void FEditorConfigModule::StartupModule()
|
|
{
|
|
}
|
|
|
|
void FEditorConfigModule::ShutdownModule()
|
|
{
|
|
}
|
|
|
|
IMPLEMENT_MODULE(FEditorConfigModule, EditorConfig) |