rg-chess 0.2.4

Chess Game with graphical interface.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! chess game executable

use chess::{run, ChessGui};

fn main() {
    // Init the logger
    env_logger::init();

    // Create and run the game
    run(ChessGui::default());
}