2016-12-08 08:52:44 -05:00
|
|
|
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
|
2016-06-14 11:34:25 -04:00
|
|
|
|
|
|
|
|
#include "ViewportInteractionModule.h"
|
2017-03-01 12:26:39 -05:00
|
|
|
#include "ViewportWorldInteractionManager.h"
|
2016-06-14 11:34:25 -04:00
|
|
|
|
|
|
|
|
FViewportInteractionModule::FViewportInteractionModule()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FViewportInteractionModule::~FViewportInteractionModule()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IMPLEMENT_MODULE( FViewportInteractionModule, ViewportInteraction )
|
|
|
|
|
|
2016-09-01 10:05:49 -04:00
|
|
|
void FViewportInteractionModule::StartupModule()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FViewportInteractionModule::ShutdownModule()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FViewportInteractionModule::PostLoadCallback()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FViewportWorldInteractionManager& FViewportInteractionModule::GetWorldInteractionManager()
|
|
|
|
|
{
|
|
|
|
|
return WorldInteractionManager;
|
|
|
|
|
}
|