qamp/Qrakhen.Qamp.Core/IPeekable.cs

6 lines
98 B
C#

namespace Qrakhen.Qamp.Core;
public interface IPeekable<out T>
{
T Peek(int delta = -1);
}