sharp-chat/SharpChat/IPacketTarget.cs

7 lines
146 B
C#
Raw Normal View History

2022-08-30 15:00:58 +00:00
namespace SharpChat {
public interface IPacketTarget {
string TargetName { get; }
void Send(IServerPacket packet);
}
}