2 个不稳定版本
0.2.0 | 2024年8月10日 |
---|---|
0.1.0 | 2024年7月21日 |
21 在 #华容道
每月399 次下载
在 puzzle-game 中使用
7KB
151 行
puzzle-lib
一个用于解谜游戏的库。
使用方法
// import the library
use puzzle_lib::Puzzle;
fn main() {
let puzzle = Puzzle::new(3, 3);
// show the puzzle
for i in 0..3{
println!("{:?}", puzzle.puzzle[i]);
}
println!();
// move the tile to the up
puzzle.move_tile('U');
// show the puzzle
for i in 0..3{
println!("{:?}", puzzle.puzzle[i]);
}
}
依赖关系
~0.6–1.2MB
~25K SLoC