void PrintData() { for (int i = 0; i < m_WordList.Count; i++) { Debug.Log(m_WordList.GetAnswer(i)); } }
void CheckList() { Debug.Log("리스트 체크"); for (int i = 0; i < m_WordList.Count; i++) { if (m_WordList.GetAnswer(i).Length > this.GridSize) { m_WordList.DontUse(i); } else { m_Question++; } } }