Exemple #1
0
        /// <summary>
        /// Read ItemStatCost data
        /// </summary>
        private static void ReadItemStatCost()
        {
            List <ItemStatCost> statCosts = ItemStatCost.Read(Resources.Instance.OpenResourceText("ItemStatCost.txt"));

            itemStatCostsByName = statCosts.ToDictionary(v => v.Stat, v => v);
            itemStatCostsById   = statCosts.ToDictionary(v => v.ID, v => v);
        }