Beispiel #1
0
        void ISquare.Sit(ITable table)
        {
            _flow.Next(SquareState.Sited);
            _table = table;
            _table.AddSquare(this);

            foreach (var chess in _chessList)
            {
                table[chess.CurrentPoint] = chess;
            }
        }