namespace SpriteCompiler.AI { using System; using System.Collections.Generic; public interface IQueue { void Clear(); bool Empty { get; } T Remove(); void Enqueue(T item); void AddRange(IEnumerable items); } }