2022-07-29 20:35:39 +08:00
|
|
|
|
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-07-29 20:35:39 +08:00
|
|
|
|
{
|
2022-08-06 10:43:24 +08:00
|
|
|
|
return new byte[0];
|
2022-07-29 20:35:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-08-06 10:43:24 +08:00
|
|
|
|
public override void Deserialize(byte[] array)
|
2022-07-29 20:35:39 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|