using Svelto.DataStructures; using System.Collections.Generic; namespace Svelto.ECS { /// /// This is just a place holder at the moment /// I always wanted to create my own Dictionary /// data structure as excercise, but never had the /// time to. At the moment I need the custom interface /// wrapped though. /// public interface ITypeSafeDictionary { } public class TypeSafeDictionary : Dictionary, ITypeSafeDictionary { internal static readonly ReadOnlyDictionary Default = new ReadOnlyDictionary(new TypeSafeDictionary()); } }