public BoxerStanceChangedEventArgs(Boxer.Stance newStance) {
     this.NewStance = newStance;
 }
示例#2
0
 private void LoadStatus(Boxer boxer) {
     this.HitPoints = boxer.HitPoints;
     this.IsAttacking = boxer.IsCastingAttack;
     this.Stance = boxer.BoxerStance;
 }