1
0
mirror of https://github.com/lidgren/lidgren-network-gen3.git synced 2026-05-15 06:36:30 +09:00

NetIncomingMessage and NetOutgoingMessage common parts unified in NetBuffer; which is now a base class for the former

This commit is contained in:
lidgren
2012-03-23 08:59:32 +00:00
parent 8cbdd6e317
commit 0a0e319f21
25 changed files with 2165 additions and 286 deletions

View File

@@ -26,7 +26,7 @@ namespace Lidgren.Network
/// Outgoing message used to send data to remote peer(s)
/// </summary>
[DebuggerDisplay("LengthBits={LengthBits}")]
public sealed partial class NetOutgoingMessage
public sealed class NetOutgoingMessage : NetBuffer
{
internal NetMessageType m_messageType;
internal bool m_isSent;