예제 #1
0
 public void SetupItemCosts(IEnumerable <CurrencyAmount> data)
 {
     if (_cost == null)
     {
         return;
     }
     _cost.Generate <CostCurrencyUi>(data, (entry, price) =>
     {
         price.Setup(entry);
     });
 }
예제 #2
0
 public void SetProfileList(IEnumerable <string> data)
 {
     _profiles.Generate <ProfileEntryUi>(data, (entry, item) => { item.Setup(entry); });
 }
예제 #3
0
파일: ShopUi.cs 프로젝트: johnsay/outburst1
 private void SetSellList(IEnumerable <ItemEntry> data)
 {
     _toSellEntries.Generate <ShopEntryUi>(data, (entry, item) => { item.Setup(entry, this, false); });
 }
예제 #4
0
파일: ShopUi.cs 프로젝트: johnsay/outburst1
 private void SetBuyList(IEnumerable <Item> data)
 {
     _toBuyEntries.Generate <ShopEntryUi>(data, (entry, item) => { item.Setup(entry, this, true); });
 }