Пример #1
0
 protected void RpcRemoveBuyoutGoal()
 {
     gameManager.buyoutGoals.Remove(this.gameObject);
     StartCoroutine(BuyoutGoals.RemoveGoalFromList(this.gameObject));
 }
Пример #2
0
 public void OnPointerClick(PointerEventData eventData)
 {
     StartCoroutine(BuyoutGoals.UpdateTitle(titleTMPro.text, buyoutPrice));
 }
Пример #3
0
 protected void RpcAddBuyoutGoal()
 {
     gameManager.buyoutGoals.Add(this.gameObject);
     BuyoutGoals.AddGoalToList(this.gameObject);
 }