示例#1
0
文件: ShopUI.cs 项目: sergeydus/Flood
 private void Refresh()
 {
     foreach (ConstructionItem i in inventory.items)
     {
         ShopSlot slot = ShopSlot.Instantiate(shopSlotPrefab, content);
         slot.Display(i, dragParent, slot.gameObject);
     }
 }