BizHawk/BizHawk.Emulation/Interfaces/IGame.cs

11 lines
202 B
C#

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