You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
40 lines
981 B
C
40 lines
981 B
C
// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
|
|
|
|
/*=============================================================================
|
|
Networking.h: Networking module public header file.
|
|
=============================================================================*/
|
|
|
|
#pragma once
|
|
|
|
|
|
/* Dependencies
|
|
*****************************************************************************/
|
|
|
|
#include "Core.h"
|
|
#include "ModuleManager.h"
|
|
#include "Sockets.h"
|
|
#include "SocketSubsystem.h"
|
|
|
|
|
|
/* Interfaces
|
|
*****************************************************************************/
|
|
|
|
#include "IPv4SubnetMask.h"
|
|
#include "IPv4Address.h"
|
|
#include "IPv4Endpoint.h"
|
|
#include "IPv4Subnet.h"
|
|
|
|
#include "SteamEndpoint.h"
|
|
|
|
#include "INetworkingModule.h"
|
|
|
|
|
|
/* Common
|
|
*****************************************************************************/
|
|
|
|
#include "TcpSocketBuilder.h"
|
|
#include "TcpListener.h"
|
|
|
|
#include "UdpSocketReceiver.h"
|
|
#include "UdpSocketSender.h"
|
|
#include "UdpSocketBuilder.h" |