mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-07 02:08:17 +02: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);
|
|
}
|
|
}
|