Пример #1
0
        public DamageResultList GetResultList(bool linked_to_saving = true)
        {
            DamageResultList result = new DamageResultList();

            foreach (DamageTemplate template in Elements)
            {
                result.AddElementSilent(new DamageResult(template, linked_to_saving));
            }
            return(result);
        }
 public DamageResultList(DamageResultList to_copy) : base(to_copy)
 {
 }