Avalon.Network.Packets.SMSG_PONG.SMSG_PONG C# (CSharp) Method

SMSG_PONG() public method

public SMSG_PONG ( UInt32 count, UInt32 time ) : System
count System.UInt32
time System.UInt32
return System
        public SMSG_PONG(UInt32 count, UInt32 time)
            : base(18479)
        {
            this.EnsureCapacity(32);

            m_Stream.Write((UInt32)count);
            m_Stream.Write((UInt32)time);
            m_Stream.Write((int)0x00000000);
            m_Stream.Write((int)0x00000000);
        }
SMSG_PONG