using System.Collections; using System.Collections.Generic; using UnityEngine; namespace BITKit { public class ShowDictionary : Provider> { public IDictionary dictionary = new Dictionary(); public override IDictionary Get() { throw new System.NotImplementedException(); } public override void Set(IDictionary t) { dictionary = t; } } }