Exemplo n.º 1
0
        public List <Storage> getNeeds()
        {
            // StorageSet used for faster calculation
            StorageSet res = new StorageSet();

            foreach (var item in personal)
            {
                res.Add(item.Value.getRealNeeds(getOwner().Country));
            }
            return(res.ToList());
        }