Type Alias GridNeighbours

GridNeighbours: {
    e: GridCell | undefined;
    n: GridCell | undefined;
    ne: GridCell | undefined;
    nw: GridCell | undefined;
    s: GridCell | undefined;
    se: GridCell | undefined;
    sw: GridCell | undefined;
    w: GridCell | undefined;
}