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