namespace Qrakhen.Qamp.Core;
public interface IReadable<out T>
{
T Read(int position);
T[] Read(int position, int length);
}