rsmod-pathfinder 5.0.4

A breadth-first search path finder.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(non_camel_case_types)]

use wasm_bindgen::prelude::wasm_bindgen;

#[repr(u8)]
#[wasm_bindgen]
pub enum LocLayer {
    WALL = 0,
    WALL_DECOR = 1,
    GROUND = 2,
    GROUND_DECOR = 3
}