Questor.Modules.Lookup.Ammo.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : Ammo
return Ammo
        public Ammo Clone()
        {
            Ammo _ammo = new Ammo
                {
                    TypeId = TypeId,
                    DamageType = DamageType,
                    Range = Range,
                    Quantity = Quantity,
                    Description = Description
                };
            return _ammo;
        }