23 lines
494 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
{
2022-08-06 10:43:24 +08:00
public override PacketType Type { get { return PacketType.PingPong; } }
public override byte[] Serialize()
{
2022-08-06 10:43:24 +08:00
return new byte[0];
}
2022-08-06 10:43:24 +08:00
public override void Deserialize(byte[] array)
{
}
}
}
}