konkon / HistoricCell.java
HistoricCell.java
Raw
public class HistoricCell {

    public Cell cell;
    public int newValue;

    public HistoricCell(Cell cell, int newValue) {
        this.cell = cell;
        this.newValue = newValue;
    }
}