mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
13 lines
215 B
C#
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);
|
|||
|
}
|
|||
|
}
|