core_pb::grid::standard_grid

Constant GRID_BLANK

Source
pub const GRID_BLANK: Grid;
Expand description

A (mostly) blank Grid - (1, 1) is walkable

use core_pb::grid::standard_grid::GRID_BLANK;
use core_pb::grid::Grid;
use core_pb::grid::computed_grid::ComputedGrid;

let grid: Grid = GRID_BLANK;
let computed_grid: ComputedGrid = grid.try_into().unwrap();