Files
RobustToolbox/Lidgren.Network/NetReceiverChannelBase.cs
T
Pieter-Jan BriersandGitHub a0c1415873 Update Lidgren to master from the repo. (#979)
Should improve stability or whatever. Also some convenient stream features.
2020-02-15 01:21:30 +01:00

19 lines
362 B
C#

using System;
namespace Lidgren.Network
{
internal abstract class NetReceiverChannelBase
{
internal NetPeer m_peer;
internal NetConnection m_connection;
public NetReceiverChannelBase(NetConnection connection)
{
m_connection = connection;
m_peer = connection.m_peer;
}
internal abstract void ReceiveMessage(NetIncomingMessage msg);
}
}