qamp/Qrakhen.Qamp.Core/ISteppable.cs

7 lines
108 B
C#

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