card game stuff

This commit is contained in:
2026-05-15 06:35:01 -07:00
parent 5fb96becbb
commit 09edadc822
4 changed files with 64 additions and 0 deletions
+6
View File
@@ -32,3 +32,9 @@ pub struct Klondike {
config: KlondikeConfig,
state: KlondikeState,
}
impl Klondike {
pub fn new() -> Self {
let deck = Stack::full_deck(0);
unimplemented!()
}
}