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

SMSG_PING() public method

public SMSG_PING ( int count, UInt32 time ) : System
count int
time System.UInt32
return System
        public SMSG_PING(int 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_PING