mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
12 lines
273 B
C#
12 lines
273 B
C#
namespace ACE.Server.Network.Packets
|
|
{
|
|
public class PacketInboundConnectResponse
|
|
{
|
|
public ulong Check { get; }
|
|
|
|
public PacketInboundConnectResponse(ClientPacket packet)
|
|
{
|
|
Check = packet.DataReader.ReadUInt64();
|
|
}
|
|
}
|
|
}
|