public CharacterStats(CharacterAttribute speed, CharacterAttribute might, CharacterAttribute sanity, CharacterAttribute knowledge)
 {
     this.Speed = speed;
     this.Might = might;
     this.Sanity = sanity;
     this.Knowledge = knowledge;
 }
 private static void AttributeValueChanged(object sender, CharacterAttribute.AttributeValueEventArgs e)
 {
     // TODO Highlight the new value
 }