You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
526 B
C++
29 lines
526 B
C++
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "NetworkingModule.h"
|
|
#include "Modules/ModuleManager.h"
|
|
#include "Interfaces/IPv4/IPv4Endpoint.h"
|
|
|
|
|
|
IMPLEMENT_MODULE(FNetworkingModule, Networking);
|
|
|
|
|
|
/* IModuleInterface interface
|
|
*****************************************************************************/
|
|
|
|
void FNetworkingModule::StartupModule()
|
|
{
|
|
FIPv4Endpoint::Initialize();
|
|
}
|
|
|
|
|
|
void FNetworkingModule::ShutdownModule()
|
|
{
|
|
}
|
|
|
|
|
|
bool FNetworkingModule::SupportsDynamicReloading()
|
|
{
|
|
return false;
|
|
}
|