pub trait CostMatrixSet {
    // Required method
    fn set_xy(&mut self, xy: RoomXY, cost: u8);
}

Required Methods§

source

fn set_xy(&mut self, xy: RoomXY, cost: u8)

Implementors§