HighLife.Cell.Cell C# (CSharp) Method

Cell() public method

public Cell ( int x, int y, CellValue cellValue )
x int
y int
cellValue CellValue
        public Cell(int x, int y, CellValue cellValue)
        {
            X = x;
            Y = y;
            CellValue = cellValue;
        }
Cell