27 lines
599 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using Lidgren.Network;
namespace RageCoop.Core
{
internal partial class Packets
{
internal class PingPong : Packet
{
public override void Pack(NetOutgoingMessage message)
{
#region PacketToNetOutGoingMessage
2022-07-29 21:15:23 +08:00
message.Write((byte)PacketType.PingPong);
message.Write(1);
message.Write((byte)0);
#endregion
}
public override void Unpack(byte[] array)
{
}
}
}
}