Skip to content
No description, website, or topics provided.
Rust
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
examples
fonts
src
tests
.gitignore
Cargo.toml
README.md
screenshot.png

README.md

rust-chess

The game of chess, in rust

On the radar:
  • full game of chess
  • GUI
  • networking (lan/multicast, internet server/client)
  • ai to combat

screenshot

basic example:

let mut game = Game::new();

game.play((1,1),(2,1)); //player white
game.play((6,1),(5,1)); //player black
println!("valid move? {:?}",game.play((0,2),(2,0)));

println!("{:?}",game); //prints out current gameboard layout

extended examples in tests

You can’t perform that action at this time.