twothousand_forty_eight/
lib.rs

1//! a basic engine and move validator for the game 2048
2//!
3//! Includes wasm bindings generated with wasm_bindgen
4
5#[allow(clippy::needless_range_loop)]
6pub mod board;
7pub mod direction;
8pub mod random;
9pub mod rules;
10pub mod unified;
11pub mod v1;
12pub mod v2;
13
14#[cfg(feature = "wasm")]
15pub mod wasm;