remove NamedDictionary that was only being used by a deleted mnemonics system

This commit is contained in:
adelikat 2014-07-03 17:47:12 +00:00
parent 216796c29e
commit 55c9132037
1 changed files with 0 additions and 16 deletions

View File

@ -38,22 +38,6 @@ namespace BizHawk.Common
protected WorkingDictionary(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
/// <summary>
/// A dictionary that contains a name parameter, which is required
/// </summary>
[Serializable]
public class NamedDictionary<K, V> : Dictionary<K, V>
{
public NamedDictionary(string name)
{
Name = name;
}
public string Name { get; private set; }
protected NamedDictionary(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
/// <summary>
/// a Dictionary-of-lists with key K and values List&lt;V&gt;
/// </summary>