Ejemplo n.º 1
0
        public static void UpdateComboData(IRngHelper helper, TextBox combo)
        {
            int attacksUntilCombo = helper.GetAttacksUntilNextCombo();

            combo.Text = attacksUntilCombo == -1
                ? FormConstants.Safe
                : attacksUntilCombo.ToString();
        }
Ejemplo n.º 2
0
 public static void UpdateNextHealData(IRngHelper helper, TextBox lastHeal)
 {
     lastHeal.Text = helper.GetNextExpectedHealValue().ToString();
 }