namespace BizHawk.Emulation.Common
{
///
/// Provides detailed information about the Rom such as hashes,
/// and decisions made such as which board configuration was used.
///
public interface IRomInfo : ISpecializedEmulatorService
{
///
/// All necessary information about the Rom.
/// Expected to be formatted for user consumption
///
string RomDetails { get; }
}
}