1 个稳定版本
使用旧的Rust 2015
1.0.0 | 2020年5月7日 |
---|
#644 在 游戏 中
24KB
707 行
2048
如何玩
首先,克隆此仓库
git clone https://github.com/7ma7X/2048.git
cd 2048
要开始游戏,
cargo build
./target/debug/rust2048
或者简单地
cargo run
按键 | 操作 |
---|---|
i / I | 向上移动 |
m / M | 向下移动 |
j / J | 向左移动 |
k / K | 向右移动 |
如果您想更改此快捷键,请修改以下 src/main.rs
中的条件...
if input.starts_with("i") || input.starts_with("I") {
// move up
} else if input.starts_with("m") || input.starts_with("M") {
// move down
} else if input.starts_with("j") || input.starts_with("J") {
// move left
} else if input.starts_with("k") || input.starts_with("K") {
// move right
如何测试
cargo test
依赖项
~0.7–7.5MB
~50K SLoC