BizHawk/BizHawk.Emulation/Interfaces/IGame.cs

12 lines
227 B
C#

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