Files
EASTL/test/packages/EAMain/source/internal/NetworkChannel.h
T
jeanlemotan 48ab06b1d9 First
2024-07-02 18:10:39 +02:00

22 lines
531 B
C++

///////////////////////////////////////////////////////////////////////////////
// Copyright (c) Electronic Arts Inc. All rights reserved.
///////////////////////////////////////////////////////////////////////////////
#ifndef EAMAIN_INTERNAL_NETWORKCHANNEL_H
#define EAMAIN_INTERNAL_NETWORKCHANNEL_H
#include <EAMain/internal/EAMainChannels.h>
namespace EA
{
namespace EAMain
{
namespace Internal
{
IChannel *CreateNetworkChannel(const char *connection, int port);
}
}
}
#endif