sharp-chat/SharpChat/Packet/PongPacket.cs

8 lines
165 B
C#

namespace SharpChat.Packet {
public class PongPacket : ServerPacket {
public override string Pack() {
return "0\tpong";
}
}
}