예제 #1
0
파일: wordle.cs 프로젝트: LEPT0N/toybox
        public void set_hint_score(string hint_string, s_hint_score hint_score)
        {
            foreach (c_hint hint in m_hints)
            {
                if (hint.m_hint == hint_string)
                {
                    hint.m_score = hint_score;

                    return;
                }
            }
        }
예제 #2
0
파일: wordle.cs 프로젝트: LEPT0N/toybox
 public c_hint(string hint, s_hint_score score)
 {
     m_hint  = hint;
     m_score = score;
 }