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

            if (max >= 0)
            {
                jjhardpoint.Show();
                jjhardpoint?.SetText(max);
            }
            else
            {
                jjhardpoint.Hide();
            }
        }