mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
14 lines
373 B
C#
14 lines
373 B
C#
namespace NexusForever.Shared.Network.Message.Model
|
|
{
|
|
[Message(GameMessageOpcode.ClientPacked)]
|
|
public class ClientPacked : IReadable
|
|
{
|
|
public byte[] Data { get; private set; }
|
|
|
|
public void Read(GamePacketReader reader)
|
|
{
|
|
uint length = reader.ReadUInt();
|
|
Data = reader.ReadBytes(length - 4);
|
|
}
|
|
}
|
|
}
|