qamp/Qrakhen.Qamp.Core/Collections/Abstractions/ISteppable.cs

7 lines
131 B
C#

namespace Qrakhen.Qamp.Core.Collections.Abstractions;
public interface ISteppable<out T>
{
bool Done { get; }
T Next();
}