9 lines
219 B
C#
9 lines
219 B
C#
using System.Collections.Generic;
|
|
|
|
namespace SharpChat.Packet {
|
|
public class PongPacket : ServerPacket {
|
|
public override IEnumerable<string> Pack() {
|
|
yield return "0\tpong";
|
|
}
|
|
}
|
|
}
|