Files
UnrealEngine/Engine/Source/Runtime/Networking/Private/NetworkingModule.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

29 lines
516 B
C++

// Copyright 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;
}