sharp-chat/SharpChat.Protocol.SockChat/Packets/IServerPacket.cs
2022-08-30 17:05:29 +02:00

7 lines
163 B
C#

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