TrainsAndRoads/interface/types/Node.ts

10 lines
148 B
TypeScript

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