MineSweeper.Cell.Cell C# (CSharp) Method

Cell() public method

public Cell ( int row, int column ) : System
row int
column int
return System
        public Cell(int row, int column)
        {
            Row = row;
            Column = column;
        }
Cell