12 lines
134 B
Rust
12 lines
134 B
Rust
pub mod board;
|
|
pub mod fen;
|
|
pub mod game;
|
|
pub mod r#move;
|
|
|
|
use game::Game;
|
|
|
|
fn main() {
|
|
let game = Game::new();
|
|
game.run();
|
|
}
|