Example #1
0
        public void SetJJ(int max)
        {
            if (jjhardpoint == null)
            {
                return;
            }

            if (max >= 0)
            {
                jjhardpoint.Show();
                jjhardpoint?.SetText(max);
            }
            else
            {
                jjhardpoint.Hide();
            }
        }
Example #2
0
 public void SetJJ(int count, int max)
 {
     jjhardpoint?.SetText(count, max);
     jjhardpoint?.Show();
 }