23 lines
479 B
C#
23 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Lidgren.Network;
|
|
|
|
namespace RageCoop.Core
|
|
{
|
|
internal partial class Packets
|
|
{
|
|
internal class PingPong : Packet
|
|
{
|
|
public override PacketType Type => PacketType.PingPong;
|
|
public override byte[] Serialize()
|
|
{
|
|
return new byte[0];
|
|
}
|
|
|
|
public override void Deserialize(byte[] array)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|