separate klondike

This commit is contained in:
2026-05-16 16:55:58 -07:00
parent fe2530bfc8
commit 5ed4ec139f
10 changed files with 39 additions and 18 deletions
+1
View File
@@ -5,3 +5,4 @@ edition = "2024"
[dependencies]
card_game = { version = "0.1.0", path = "../card_game" }
klondike = { version = "0.1.0", path = "../klondike" }
+2 -2
View File
@@ -1,5 +1,5 @@
use card_game::card_game::{Card, Game, Pile, Session, Suit};
use card_game::klondike::{
use card_game::{Card, Game, Pile, Session, Suit};
use klondike::{
DstFoundation, DstTableau, Foundation, Klondike, KlondikeInstruction, KlondikePile,
KlondikePileStack, SkipCards, Tableau, TableauStack,
};