namespace BizHawk.Emulation.Common { /// /// An that returns cart/mapper/board information about the Game hardware itself, if available /// Currently the board name is the only property but this could be expanded to support more detailed information /// /// /// public interface IBoardInfo : IEmulatorService { /// /// Gets the identifying information about a "mapper", cart, board or similar capability. /// string BoardName { get; } } }