Deck Implementation

Implemented a Deck type that has a new function that returns an
unshuffled deck. Also wrote an integration test for the new function to
make sure that it works.

Reviewed-on: #11
This commit was merged in pull request #11.
This commit is contained in:
2026-01-10 18:03:43 -05:00
parent 624e39b78e
commit cedef1792f
4 changed files with 63 additions and 0 deletions

View File

@@ -2,6 +2,9 @@ use std::error::Error;
mod card;
mod deck;
pub use deck::Deck;
mod gamestate;
mod hand;