Example #1
0
 public Ammo Clone()
 {
     var ammo = new Ammo();
     ammo.TypeId = TypeId;
     ammo.DamageType = DamageType;
     ammo.Range = Range;
     ammo.Quantity = Quantity;
     ammo.Description = Description;
     return ammo;
 }
Example #2
0
 public Ammo Clone()
 {
     var ammo = new Ammo
         {
             TypeId = TypeId,
             DamageType = DamageType,
             Range = Range,
             Quantity = Quantity,
             Description = Description
         };
     return ammo;
 }
Example #3
0
 public Ammo Clone()
 {
     Ammo _ammo = new Ammo
         {
             TypeId = TypeId,
             DamageType = DamageType,
             Range = Range,
             Quantity = Quantity,
             Description = Description,
             Name = Name,
         };
     return _ammo;
 }