public void BuyPerClickBoost(ShopItem item) { if (item.videoAgainstMoney && GameManager.instance.GetScore() < item.price) { AdsManager.instance.ShowRewarded(item.Action); } else { GameManager.instance.SubtractFromScore(item.price); item.Action(); } }