private void CursorMove(int row, int column) { var matrix = Matrix; matrix.Row += row; matrix.Column += column; Matrix = matrix; }
public CursorStatus(Matrix playAreaSize) { this.PlayAreaSize = playAreaSize; this.Matrix = new MatrixRange(playAreaSize); this.CursorWait = 0; }