コード例 #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);
     }
 }