Example #1
0
        public List <Weapon> RetrieveWeaponList()
        {
            List <Weapon> weaponList = null;

            try
            {
                weaponList = InventoryAccessor.RetrieveWeapons();
            }
            catch (Exception)
            {
                throw;
            }

            return(weaponList);
        }