You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #lockdown Nick.Penwarden #ROBOMERGE-OWNER: ryan.vance #ROBOMERGE-AUTHOR: chris.gagnon #ROBOMERGE-SOURCE: CL 4837001 in //UE4/Main/... #ROBOMERGE-BOT: DEVVR (Main -> Dev-VR) [CL 4837006 by chris gagnon in Dev-VR branch]
16 lines
294 B
C++
16 lines
294 B
C++
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "EditorSubsystemModule.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
IMPLEMENT_MODULE(FEditorSubsystemModule, EditorSubsystem);
|
|
|
|
void FEditorSubsystemModule::StartupModule()
|
|
{
|
|
|
|
}
|
|
|
|
void FEditorSubsystemModule::ShutdownModule()
|
|
{
|
|
}
|