6 lines
163 B
C#
6 lines
163 B
C#
namespace SharpChat.Protocol.SockChat.Packets {
|
|
public interface IServerPacket {
|
|
public const char SEPARATOR = '\t';
|
|
string Pack();
|
|
}
|
|
}
|