Files
UnrealEngineUWP/Engine/Source/Runtime/Networking/Public/Interfaces/INetworkingModule.h
2014-03-14 14:13:41 -04:00

20 lines
441 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
/*=============================================================================
INetworkingModule.h: Declares the INetworkingModule interface.
=============================================================================*/
#pragma once
/**
* Interface for networking modules.
*/
class INetworkingModule
: public IModuleInterface
{
protected:
INetworkingModule( ) { }
};