mirror of
https://github.com/lscharen/iigs-sprite-compiler.git
synced 2024-10-07 10:54:31 +00:00
13 lines
197 B
C#
13 lines
197 B
C#
|
namespace SpriteCompiler.AI
|
|||
|
{
|
|||
|
using System;
|
|||
|
|
|||
|
public interface IQueue<T>
|
|||
|
{
|
|||
|
void Clear();
|
|||
|
bool Empty { get; }
|
|||
|
T Remove();
|
|||
|
void Enqueue(T item);
|
|||
|
}
|
|||
|
}
|