wabbajack/Wabbajack.Common.CSP/IBuffer.cs

13 lines
215 B
C#
Raw Normal View History

2019-11-09 06:37:05 +00:00
using System;
namespace Wabbajack.Common.CSP
{
public interface IBuffer<T> : IDisposable
{
bool IsFull { get; }
bool IsEmpty { get; }
T Remove();
void Add(T itm);
}
}