fixed undo/redo bugs

renamed rdraught-ui to rdraught-gtk
This commit is contained in:
2025-07-03 10:37:15 +08:00
parent dd0777ff9a
commit e5182c26f3
16 changed files with 293 additions and 70 deletions

7
rdraught-gtk/src/main.rs Normal file
View File

@@ -0,0 +1,7 @@
use glib::ExitCode;
use rdraught::draughts::DraughtsGame;
fn main() -> ExitCode {
let game = DraughtsGame::default();
rdraught_gtk::run(game)
}