nitpicky thing I forgot to do in last commit, nothing important here

This commit is contained in:
adelikat 2013-12-14 05:59:08 +00:00
parent 6840c2a122
commit 15e547115c
1 changed files with 3 additions and 0 deletions

View File

@ -41,6 +41,7 @@ namespace BizHawk.Common
/// <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)
@ -49,6 +50,8 @@ namespace BizHawk.Common
}
public string Name { get; private set; }
protected NamedDictionary(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
/// <summary>