using System; namespace FF8 { public interface IStack { Int32 Count { get; } void Push(T item); T Pop(); } }