card-games/src/models/player.rs
2025-05-23 00:44:18 -05:00

7 lines
113 B
Rust

use crate::models::hand::Hand;
#[derive(Debug)]
pub struct Player {
pub name: String,
pub hand: Hand,
}