mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
19 lines
380 B
C#
19 lines
380 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);
|
|
}
|
|
}
|