sharp-chat/SharpChat.Protocol.SockChat/Packets/IServerPacket.cs

7 lines
163 B
C#

namespace SharpChat.Protocol.SockChat.Packets {
public interface IServerPacket {
public const char SEPARATOR = '\t';
string Pack();
}
}