soukoban 0.1.2

A library provides the implementation of some algorithms and data structures related to Sokoban
Documentation
#![allow(clippy::op_ref)]
#![deny(missing_docs)]
#![doc = include_str!("../README.md")]

pub mod action;
pub mod actions;
pub mod deadlock;
pub mod direction;
pub mod error;
pub mod level;
pub mod map;
pub mod path_finding;
pub mod run_length;
pub mod solver;
pub mod tiles;

mod node;
mod state;

pub use action::*;
pub use actions::*;
pub use error::*;
pub use level::*;
pub use map::*;
pub use tiles::*;