Added card struct. Also added ability for card to be displayed on

terminal.
This commit is contained in:
2026-01-10 15:31:53 -05:00
parent f71a9f2a29
commit ff8ebc0445
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!");