コード例 #1
0
        private void DeletePair(Grid prev, Grid current)
        {
            LinkedList temp = new LinkedList();

            temp.Add(prev);
            for (int i = 0; i < pcount; i++)
            {
                temp.AddAll(path[i]);
                path[i].Clear();
            }
            AnimateThread thread = new AnimateThread(temp);

            thread.Tag = this;
            thread.Start();
        }
コード例 #2
0
ファイル: LLKScreen.cs プロジェクト: 207h2Flogintvg/LGame
 private void DeletePair(Grid prev, Grid current)
 {
     LinkedList temp = new LinkedList();
     temp.Add(prev);
     for (int i = 0; i < pcount; i++)
     {
         temp.AddAll(path[i]);
         path[i].Clear();
     }
     AnimateThread thread = new AnimateThread(temp);
     thread.Tag = this;
     thread.Start();
 }