BizHawk/BizHawk.Emulation/Interfaces/IGame.cs

9 lines
160 B
C#

namespace BizHawk
{
public interface IGame
{
byte[] GetRomData();
string[] GetOptions();
string Name { get; }
}
}