using System.Collections.Generic; namespace BizHawk { public interface IGame { byte[] GetRomData(); byte[] GetFileData(); IList GetOptions(); string Name { get; } } }