예제 #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);
     }
 }