System.Collections.Generic.List.Remove(WeaponData)

Here are the examples of the csharp api System.Collections.Generic.List.Remove(WeaponData) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : AircraftData.cs
with MIT License
from EllanJiang

public void DetachWeaponData(WeaponData weaponData)
        {
            if (weaponData == null)
            {
                return;
            }

            m_WeaponDatas.Remove(weaponData);
        }