This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// -------------------------------------------------------------------------------------------------------------------- | |
// <author> | |
// HiddenMonk | |
// http://answers.unity3d.com/users/496850/hiddenmonk.html | |
// | |
// Johannes Deml | |
// [email protected] | |
// | |
// Eris Koleszar | |
// [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
namespace System.Collections.Generic | |
{ | |
[Serializable] | |
public class StringIntTuple : SerializableKeyValuePair<string, int> | |
{ | |
public StringIntTuple(string item1, int item2) : base(item1, item2) { } | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
namespace System.Collections.Generic | |
{ | |
[Serializable] | |
public abstract class SerializableDictionary<TKey, TValue> : Dictionary<TKey, TValue>, ISerializationCallbackReceiver | |
{ | |
protected abstract List<SerializableKeyValuePair<TKey, TValue>> _keyValuePairs { get; set; } | |
// save the dictionary to lists |