Card Struct

Added first version of Card struct. Also added an ability for it to be printed out through rust standard functions.

Reviewed-on: #10
This commit was merged in pull request #10.
This commit is contained in:
2026-01-10 15:37:00 -05:00
parent f71a9f2a29
commit 624e39b78e
2 changed files with 37 additions and 1 deletions

View File

@@ -1,9 +1,9 @@
use std::error::Error;
mod card;
mod hand;
mod deck;
mod gamestate;
mod hand;
pub fn run() -> Result<(), Box<dyn Error>> {
println!("Hello, world!");