コード例 #1
0
ファイル: InventoryShop.cs プロジェクト: claudyy/Inventory
 public bool CanBuy(IInventoryOwner owner, ItemShop buyItem)
 {
     return(owner.GetCurrentCurency() < buyItem.Cost);
 }
コード例 #2
0
ファイル: InventoryShop.cs プロジェクト: claudyy/Inventory
 public bool CanBuy(IInventoryOwner owner, int index)
 {
     return(owner.GetCurrentCurency() < itemShops[index].Cost);
 }