Replaces the cell at x with cell without applying wide-cell rules.
x
cell
void replace(int x, Cell cell) { if (x < 0 || x >= _cells.length) return; _cells[x].dispose(); _cells[x] = cell; }