15 lines
253 B
C++
15 lines
253 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "EditorToolEventsModule.h"
|
|
|
|
|
|
void FEditorToolEventsModule::StartupModule()
|
|
{
|
|
|
|
}
|
|
|
|
void FEditorToolEventsModule::ShutdownModule()
|
|
{
|
|
}
|
|
|
|
IMPLEMENT_MODULE(FEditorToolEventsModule, EditorToolEvents) |