sharp-chat/SharpChat/Packet/PongPacket.cs

8 lines
165 B
C#
Raw Permalink Normal View History

2024-05-10 17:28:52 +00:00
namespace SharpChat.Packet {
2022-08-30 15:00:58 +00:00
public class PongPacket : ServerPacket {
2024-05-10 15:24:43 +00:00
public override string Pack() {
2024-05-10 17:28:52 +00:00
return "0\tpong";
2022-08-30 15:00:58 +00:00
}
}
}