You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
22 lines
468 B
C++
22 lines
468 B
C++
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "DesktopPlatformModule.h"
|
|
#include "DesktopPlatformPrivate.h"
|
|
|
|
IMPLEMENT_MODULE( FDesktopPlatformModule, DesktopPlatform );
|
|
DEFINE_LOG_CATEGORY(LogDesktopPlatform);
|
|
|
|
void FDesktopPlatformModule::StartupModule()
|
|
{
|
|
DesktopPlatform = new FDesktopPlatform();
|
|
}
|
|
|
|
void FDesktopPlatformModule::ShutdownModule()
|
|
{
|
|
if (DesktopPlatform != NULL)
|
|
{
|
|
delete DesktopPlatform;
|
|
DesktopPlatform = NULL;
|
|
}
|
|
}
|