public AttackOutcome()
 {
     DamageTypes = new Dictionary <Utilities.DamageType, double>();
     Notes       = new CombatNotes();
 }
Exemple #2
0
 public CombatItems(Character c)
 {
     parent      = c;
     AttackNotes = new CombatNotes();
     DefendNotes = new CombatNotes();
 }