import { Cell } from "./Cell";
export abstract class Node {
public readonly cell: Cell;
constructor(cell: Cell) {
this.cell = cell;
}