7 lines
113 B
Rust
7 lines
113 B
Rust
use crate::models::hand::Hand;
|
|
|
|
#[derive(Debug)]
|
|
pub struct Player {
|
|
pub name: String,
|
|
pub hand: Hand,
|
|
}
|