wabbajack/Wabbajack.Common.CSP/IBuffer.cs
Timothy Baldridge d9ca38cdff
Make BSA Routines async (#168)
* Make BSA routines async
2019-11-11 21:35:07 -07:00

13 lines
215 B
C#

using System;
namespace Wabbajack.Common.CSP
{
public interface IBuffer<T> : IDisposable
{
bool IsFull { get; }
bool IsEmpty { get; }
T Remove();
void Add(T itm);
}
}