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

7 lines
163 B
C#
Raw Permalink Normal View History

2022-08-30 15:05:29 +00:00
namespace SharpChat.Protocol.SockChat.Packets {
public interface IServerPacket {
public const char SEPARATOR = '\t';
string Pack();
}
}