If you were still handling message ids as integers in an environment that can't handle signed 64-bit integers you're going to be having a fun time after this update!
7 lines
176 B
C#
7 lines
176 B
C#
namespace SharpChat.Packet {
|
|
public class PongPacket : IServerPacket {
|
|
public IEnumerable<string> Pack() {
|
|
yield return "0\tpong";
|
|
}
|
|
}
|
|
}
|