I nitpick interface refactor
This commit is contained in:
parent
74a6da509a
commit
0f1f463bcb
|
@ -42,7 +42,7 @@ namespace BizHawk.Client.Common
|
|||
return sb.ToString();
|
||||
}
|
||||
|
||||
public Dictionary<string, string> Map()
|
||||
public IDictionary<string, string> Map()
|
||||
{
|
||||
var dict = new Dictionary<string, string>();
|
||||
foreach (var group in _source.Definition.ControlsOrdered.Where(c => c.Any()))
|
||||
|
|
|
@ -23,7 +23,7 @@ namespace BizHawk.Client.Common
|
|||
/// <summary>
|
||||
/// Generates a dictionary of button names to their corresponding mnemonic values
|
||||
/// </summary>
|
||||
Dictionary<string, string> Map();
|
||||
IDictionary<string, string> Map();
|
||||
|
||||
/// <summary>
|
||||
/// Generates a display friendly version of the input log entry
|
||||
|
|
Loading…
Reference in New Issue