namespace Server;
public interface IPacketHandler<in T> where T: IPacket
{
public void Handle(T packet);
}