8 lines
152 B
Rust
8 lines
152 B
Rust
use glib::ExitCode;
|
|
use rdraught::draughts::DraughtsGame;
|
|
|
|
fn main() -> ExitCode {
|
|
let game = DraughtsGame::default();
|
|
rdraught_ui::run(game)
|
|
}
|