Esempio n. 1
0
 public void UpdateSlotsSpinButton(int gold)
 {
     if (Current_GamePanel != null && Current_GamePanel is MG_GamePanel_Slots)
     {
         MG_GamePanel_Slots SlotsPanel = Current_GamePanel as MG_GamePanel_Slots;
         SlotsPanel.UpdateSpinButtonState(gold);
     }
 }
Esempio n. 2
0
 public void UpdateSlotsPanel_FruitText()
 {
     if (_Slots is null)
     {
         if (LoadedPanel_Dic.TryGetValue((int)MG_GamePanelType.SlotsPanel, out MG_UIBase _UIBase))
         {
             _Slots = _UIBase as MG_GamePanel_Slots;
         }
     }
     if (_Slots is object)
     {
         _Slots.UpdateFruitNumText();
     }
 }