Ejemplo n.º 1
0
        public static async Task <bool> TryRetrieveFromRetainer(this BagSlot bagSlot, uint moveCount, int waitMs = DefaultBagSlotMoveWait)
        {
            uint curSlotCount = bagSlot.Count;

            bagSlot.RetainerRetrieveQuantity(moveCount);
            return(await BagSlotMoveWait(bagSlot, curSlotCount, waitMs));
        }
Ejemplo n.º 2
0
 public static void RetainerRetrieveQuantity(this BagSlot bagSlot, uint amount)
 {
     bagSlot.RetainerRetrieveQuantity((int)amount);
 }