Exemplo n.º 1
0
        void AddRunDama(TRuns Runs, int dir)
        {
            TCell[] Nears = Pos.NearsDama(dir, Pole);

            for (int i = 1; i < Nears.Count(); i++)
            {
                Runs.Add(new TRun(this, Nears[i]));
            }
        }