explorata/src/modules/cell.js

7 lines
104 B
JavaScript

export class Cell {
constructor(state = 0) {
this.state = state;
this.prevState = null;
}
}