sharp-chat/SharpChat/Packet/PongPacket.cs

10 lines
219 B
C#
Raw Normal View History

2025-04-25 15:49:46 +00:00
using System.Collections.Generic;
2022-08-30 17:00:58 +02:00
namespace SharpChat.Packet {
public class PongPacket : ServerPacket {
public override IEnumerable<string> Pack() {
yield return "0\tpong";
2022-08-30 17:00:58 +02:00
}
}
}