15 lines
No EOL
357 B
C#
15 lines
No EOL
357 B
C#
using System;
|
|
using MLAPI.Transports;
|
|
|
|
namespace MLAPI.Messaging.Buffering
|
|
{
|
|
internal struct PreBufferPreset
|
|
{
|
|
public byte MessageType;
|
|
public bool AllowBuffer;
|
|
public ulong ClientId;
|
|
public NetworkChannel NetworkChannel;
|
|
public float ReceiveTime;
|
|
public ArraySegment<byte> Data;
|
|
}
|
|
} |