示例#1
0
        /// <summary>
        /// On initialization, preload the feat ids adn set up an entry in the dictionary
        /// </summary>
        private void LoadFeatIds()
        {
            List <Guid> featIds;

            featIds = FeatModel.GetIds();
            Feats   = new SortedDictionary <Guid, FeatDataClass>();
            foreach (Guid id in featIds)
            {
                Feats.Add(id, new FeatDataClass(id));
            }
        }