示例#1
0
 /// <summary>
 /// Adds two new tier to Ox and Cadence's breach shop
 /// </summary>
 /// <param name="tier">Container with the tiers</param>
 /// <param name="index">The index to InsertOrAdd the tiers at. If null, defaults to the last index in the list</param>
 /// <returns>The tiers that were added</returns>
 public static List <MetaShopTier> AddBaseMetaShopDoubleTier(DoubleMetaShopTier tier, int?index = null)
 {
     return(new List <MetaShopTier> {
         AddBaseMetaShopTier(tier.GetBottomTier(), index),
         AddBaseMetaShopTier(tier.GetTopTier(), index)
     });
 }
示例#2
0
 /// <summary>
 /// Adds two new tier to Ox and Cadence's breach shop
 /// </summary>
 /// <param name="tier">Container with the tiers</param>
 /// <param name="index">The index to insert the tiers at. If null, defaults to the last index in the list</param>
 public static void AddBaseMetaShopDoubleTier(DoubleMetaShopTier tier, int?index = null)
 {
     AddBaseMetaShopTier(tier.GetBottomTier(), index);
     AddBaseMetaShopTier(tier.GetTopTier(), index);
 }