card-games/src/models/player.rs

8 lines
113 B
Rust
Raw Normal View History

2025-05-23 00:44:18 -05:00
use crate::models::hand::Hand;
#[derive(Debug)]
pub struct Player {
pub name: String,
pub hand: Hand,
}