iigs-sprite-compiler/SpriteCompiler/AI/IQueue.cs

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);
}
}