2 个不稳定版本

0.2.0 2024年8月10日
0.1.0 2024年7月21日

21#华容道

Download history 271/week @ 2024-07-20 12/week @ 2024-07-27 116/week @ 2024-08-10

每月399 次下载
puzzle-game 中使用

AGPL-3.0

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