Skip to main content

scramble_gen/
lib.rs

1pub mod cube;
2pub mod generators;
3pub mod moves;
4pub mod scramble;
5
6pub use cube::Cube;
7pub use moves::{Move, MoveFace, MoveType, MoveWidth};
8pub use scramble::Scramble;