public bool CanBuy(IInventoryOwner owner, ItemShop buyItem) { return(owner.GetCurrentCurency() < buyItem.Cost); }
public bool CanBuy(IInventoryOwner owner, int index) { return(owner.GetCurrentCurency() < itemShops[index].Cost); }