コード例 #1
0
ファイル: csvReader.cs プロジェクト: Fachidiot/Aspect_Quiz
 void PrintData()
 {
     for (int i = 0; i < m_WordList.Count; i++)
     {
         Debug.Log(m_WordList.GetAnswer(i));
     }
 }
コード例 #2
0
    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++;
            }
        }
    }