core_pb::grid::standard_grid

Constant GRID_PLAYGROUND

Source
pub const GRID_PLAYGROUND: Grid;
Expand description

A Grid with many smaller paths to practice maneuvering

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

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