ToolTip.SetCost C# (CSharp) Method

SetCost() public method

public SetCost ( int cost, bool hasEnoughMoney ) : void
cost int
hasEnoughMoney bool
return void
	public void SetCost(int cost, bool hasEnoughMoney) {
		_cost = cost.ToString();
		_hasEnoughMoney = hasEnoughMoney;
	}