mirror of
https://github.com/riperiperi/FSOMonoGame.git
synced 2025-01-22 16:21:46 -05:00
18 lines
380 B
C#
Executable file
18 lines
380 B
C#
Executable file
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);
|
|
}
|
|
}
|