public Soldier(IWeapon _currentWeapon, INotifyWeaponChange _notifyWeaponChange)
 {
     this.currentWeapon      = _currentWeapon;
     this.notifyWeaponChange = _notifyWeaponChange;
     this.PlayerName         = "soldat";
 }
 public Tank(IWeapon _currentWeapon, INotifyWeaponChange _notifyWeaponChange)
 {
     this.currentWeapon      = _currentWeapon;
     this.notifyWeaponChange = _notifyWeaponChange;
     this.PlayerName         = "tank";
 }