7 lines
165 B
C#
7 lines
165 B
C#
namespace SharpChat.Packet {
|
|
public class PongPacket : ServerPacket {
|
|
public override string Pack() {
|
|
return "0\tpong";
|
|
}
|
|
}
|
|
}
|